File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { Components , Theme } from '@mui/material' ;
22import { MuiAppBar } from './components/appbar.modifiter' ;
33import { MuiButton } from './components/button.modifier' ;
4+ import { MuiButtonGroup } from './components/buttongroup.modifier' ;
45import { MuiCard } from './components/card.modifier' ;
56import { MuiCheckbox } from './components/checkbox.modifier' ;
67import { MuiCollapse } from './components/collapse.modifier' ;
@@ -35,6 +36,7 @@ export const components: Components<Theme> = {
3536 MuiSvgIcon,
3637 MuiTab,
3738 MuiSwitch,
39+ MuiButtonGroup,
3840 MuiButton,
3941 MuiListItem
4042} ;
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