@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
36 lines (35 loc) • 988 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
'& .SCMyEventsWidget-title-wrapper': {
padding: string;
};
'& .SCMyEventsWidget-actions': {
padding: string;
justifyContent: string;
gap: any;
'& .SCMyEventsWidget-arrows': {
width: string;
height: string;
};
'& .SCMyEventsWidget-action-button': {
color: any;
textDecoration: string;
};
};
};
skeletonRoot: ({ theme }: {
theme: any;
}) => {
'& .SCMyEventsWidget-actions': {
height: string;
padding: string;
justifyContent: string;
gap: any;
};
};
};
};
export default Component;