@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
27 lines (26 loc) • 719 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
'& .MuiDialogTitle-root': {
textAlign: string;
fontSize: string;
fontWeight: number;
};
'& .MuiDialogContent-root': {
display: string;
minHeight: number;
justifyContent: string;
alignItems: string;
'& .SCWidget-root': {
minWidth: number;
};
'& .MuiTypography-body2': {
marginTop: any;
};
};
};
};
};
export default Component;