@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
25 lines (24 loc) • 611 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
gap: string;
position: string;
bottom: string;
left: string;
width: string;
height: string;
borderRadius: string;
boxShadow: string;
backgroundColor: any;
overflow: string;
'& .SCCalendar-header': {
width: string;
height: string;
backgroundColor: any;
};
};
};
};
export default Component;