@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
26 lines (25 loc) • 740 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
padding: any;
minWidth: string;
};
dialogRoot: ({ theme }: any) => {
'& .MuiDialogContent-root': {
paddingLeft: any;
};
'& .SCChangePictureButton-images-list': {
maxHeight: number;
};
'& .SCChangePictureButton-image-item': {
'& .MuiImageListItemBar-actionIcon, .MuiIconButton-root': {
color: any;
};
'& .SCChangePictureButton-primary': {
border: string;
};
};
};
};
};
export default Component;