@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
26 lines (25 loc) • 717 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
width: '100%',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
'& .SCProgressBar-bar': {
width: '100%',
height: 10,
borderRadius: 5
},
'& .SCProgressBar-progress': {
marginTop: theme.spacing(0.5),
h4: {
fontWeight: theme.typography.fontWeightBold,
fontSize: '18px'
}
}
})
}
};
exports.default = Component;