File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1
1
import { Components , Theme } from '@mui/material' ;
2
2
import { MuiAppBar } from './components/appbar.modifiter' ;
3
3
import { MuiButton } from './components/button.modifier' ;
4
+ import { MuiButtonGroup } from './components/buttongroup.modifier' ;
4
5
import { MuiCard } from './components/card.modifier' ;
5
6
import { MuiCheckbox } from './components/checkbox.modifier' ;
6
7
import { MuiCollapse } from './components/collapse.modifier' ;
@@ -35,6 +36,7 @@ export const components: Components<Theme> = {
35
36
MuiSvgIcon,
36
37
MuiTab,
37
38
MuiSwitch,
39
+ MuiButtonGroup,
38
40
MuiButton,
39
41
MuiListItem
40
42
} ;
Original file line number Diff line number Diff line change
1
+ import { Components , Theme } from '@mui/material' ;
2
+
3
+ export const MuiButtonGroup : Components < Theme > [ 'MuiButtonGroup' ] = {
4
+ styleOverrides : {
5
+ grouped : ( { theme } ) => ( {
6
+ borderColor : theme . palette . common . white
7
+ } )
8
+ }
9
+ } ;
You can’t perform that action at this time.
0 commit comments