@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
25 lines (24 loc) • 711 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
gap: '7px',
position: 'absolute',
bottom: '-36px',
left: '24px',
width: '60px',
height: '60px',
borderRadius: '5px',
boxShadow: '0px 3px 8px #00000040',
backgroundColor: theme.palette.common.white,
overflow: 'hidden',
'& .SCCalendar-header': {
width: '100%',
height: '16px',
backgroundColor: theme.palette.error.dark
}
})
}
};
exports.default = Component;