aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/error/styles.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/forms/src/error/styles.ts')
-rw-r--r--packages/forms/src/error/styles.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/forms/src/error/styles.ts b/packages/forms/src/error/styles.ts
new file mode 100644
index 000000000..5104838a5
--- /dev/null
+++ b/packages/forms/src/error/styles.ts
@@ -0,0 +1,9 @@
1import { Theme } from '../../../theme/lib';
2
3export default (theme: Theme) => ({
4 message: {
5 color: theme.brandDanger,
6 margin: '5px 0 0',
7 fontSize: theme.uiFontSize,
8 },
9});