@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
16 lines (15 loc) • 413 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .MuiTypography-root': {
marginBottom: theme.spacing(2)
},
'& .SCAccountDelete-confirm > .MuiTextField-root': {
display: 'block'
}
})
}
};
exports.default = Component;
;