File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1+ .label {
2+ background-color : red;
3+ }
4+ .radio {
5+ cursor : pointer;
6+ }
Original file line number Diff line number Diff line change 1+ import { Radio } from '@mantine/core'
2+ import classes from './Radio.module.css'
3+
4+ export const RadioThemeKobo = Radio . extend ( {
5+ classNames : classes ,
6+ } )
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import { TableThemeKobo } from './Table'
1313import { TagsInputThemeKobo } from './TagsInput'
1414import { ThemeIconThemeKobo } from './ThemeIcon'
1515import { TooltipThemeKobo } from './Tooltip'
16+ import { RadioThemeKobo } from './Radio'
1617
1718export const themeKobo = createTheme ( {
1819 primaryColor : 'blue' ,
@@ -123,5 +124,6 @@ export const themeKobo = createTheme({
123124 TagsInput : TagsInputThemeKobo ,
124125 ThemeIcon : ThemeIconThemeKobo ,
125126 NumberInput : NumberInputThemeKobo ,
127+ RadioInput : RadioThemeKobo ,
126128 } ,
127129} )
You can’t perform that action at this time.
0 commit comments