aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/label/styles.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/label/styles.ts')
-rw-r--r--src/components/ui/label/styles.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/ui/label/styles.ts b/src/components/ui/label/styles.ts
new file mode 100644
index 000000000..0c9cef8bf
--- /dev/null
+++ b/src/components/ui/label/styles.ts
@@ -0,0 +1,12 @@
1import { Theme } from '@meetfranz/theme';
2
3export default (theme: Theme) => ({
4 content: {},
5 label: {
6 color: theme.labelColor,
7 fontSize: theme.uiFontSize,
8 },
9 hasError: {
10 color: theme.brandDanger,
11 },
12});