@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 635 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
textAlign: string;
marginBottom: any;
'& div:last-child': {
paddingBottom: any;
};
'& .MuiCardContent-root': {
' > .MuiButton-sizeMedium': {
marginLeft: number;
marginTop: number;
};
};
'& .SCFeedUpdatesWidget-button-load-more': {
textTransform: string;
};
};
skeletonRoot: ({ theme }: any) => {};
};
};
export default Component;