@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 595 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
[x: number]: {
'& .MuiDialogContent-root': {
marginLeft: any;
marginRight: any;
};
'& .SCEventForm-actions': {
marginBottom: any;
};
};
'& .MuiDialogTitle-root': {
'& span': {
flexGrow: number;
textAlign: string;
};
};
};
};
};
export default Component;