aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/label/styles.ts
blob: faa44ae5b6916fbc4bbbcd3cb20d39c8d184a21b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Theme } from '../../../themes';

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