@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
20 lines (19 loc) • 506 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
color: 'inherit',
verticalAlign: 'middle',
'& .MuiIcon-root': {
fontSize: '1rem',
marginRight: 2
},
'& .MuiTypography-root': {
lineHeight: '1rem',
fontSize: '0.857rem'
}
})
}
};
exports.default = Component;
;