@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
24 lines (23 loc) • 622 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
flexDirection: string;
alignItems: string;
gap: any;
'&.SCCourseTypePopover-contrast-color': {
color: any;
};
'& .SCCourseTypePopover-button': {
padding: number;
textDecoration: string;
'&:hover': {
backgroundColor: string;
textDecoration: string;
};
};
};
};
};
export default Component;