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

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