@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
15 lines (14 loc) • 385 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
textAlign: 'center',
'& .SCUserProfileBlocked-info': {
marginTop: theme.spacing(3),
marginBottom: theme.spacing(3)
}
})
}
};
exports.default = Component;
;