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

export default (theme: Theme) => ({
  message: {
    color: theme.brandDanger,
    margin: '5px 0 0',
    fontSize: theme.uiFontSize,
  },
});