@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
16 lines (15 loc) • 409 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .MuiButton-startIcon': {
marginRight: theme.spacing(0.5),
'& .MuiIcon-root': {
fontSize: '0.75rem !important'
}
}
})
}
};
exports.default = Component;
;