@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 651 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title': {
fontWeight: any;
};
'& .SCEventLocationWidget-map': {
marginBottom: any;
minHeight: number;
width: string;
};
};
skeletonRoot: ({ theme }: any) => {
'& .SCEventLocationWidget-skeleton-map': {
margin: any;
minHeight: number;
width: string;
};
};
};
};
export default Component;