@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
22 lines (21 loc) • 587 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCFooter-copyright': {
marginTop: any;
fontSize: string;
};
'& .SCFooter-item-list': {
display: string;
justifyContent: string;
flexDirection: string;
'& .SCFooter-item': {
padding: any;
color: any;
};
};
};
skeletonRoot: ({ theme }: any) => {};
};
};
export default Component;