@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 725 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .MuiTypography-root': {
marginBottom: theme.spacing(2)
},
'& .SCAccountDataPortability-create-button': {
marginRight: theme.spacing(2),
marginBottom: theme.spacing()
},
'& .SCAccountDataPortability-download-button': {
marginBottom: theme.spacing()
},
'& .SCAccountDataPortability-generation-info': {
fontWeight: theme.typography.fontWeightBold
}
})
}
};
exports.default = Component;