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

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