@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
18 lines (17 loc) • 496 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
margin: theme.spacing(1, 0),
'& .SCLiveStreamFormSettings-access-view': {
margin: theme.spacing(2, 0),
width: '100%',
'& .Mui-checked': {
color: theme.palette.primary.main
}
}
})
}
};
exports.default = Component;
;