@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
38 lines (37 loc) • 1.15 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
'& .SCEventInfoWidget-content': {
padding: string;
'& .SCEventInfoWidget-title-wrapper': {
flexDirection: string;
alignItems: string;
gap: string;
marginBottom: any;
};
'& .SCEventInfoWidget-text-wrapper': {
marginBottom: any;
'& .SCEventInfoWidget-show-more': {
fontSize: any;
fontWeight: any;
padding: any;
justifyContent: string;
'&:hover': {
backgroundColor: string;
};
};
};
};
};
skeletonRoot: ({ theme }: {
theme: any;
}) => {
'& .SCEventInfoWidget-skeleton-content': {
padding: string;
};
};
};
};
export default Component;