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

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