aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/label/styles.ts
blob: f3998de04af2b4c40bfcab549331ea495cf9ca74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Theme } from '../../../theme/lib';

export default (theme: Theme) => ({
  content: {
    marginTop: 5,
  },
  label: {
    color: theme.labelColor,
    fontSize: theme.uiFontSize,
  },
  hasError: {
    color: theme.brandDanger,
  },
});