@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
19 lines (18 loc) • 483 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
display: string;
alignItems: string;
flexWrap: string;
'& .MuiButtonBase-root': {
padding: number;
borderRadius: number;
minWidth: string;
};
'& .SCChangeCoverButton-help-popover': {
marginLeft: any;
};
};
};
};
export default Component;