@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
44 lines (43 loc) • 1.31 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .MuiCardContent-root': {
padding: any;
};
'& .SCIncubatorListWidget-header': {
display: string;
alignItems: string;
};
'& .SCIncubatorListWidget-actions': {
display: string;
justifyContent: string;
};
};
dialogRoot: ({ theme }: any) => {};
skeletonRoot: ({ theme }: any) => {};
createDialogRoot: ({ theme }: any) => {
[x: number]: {
minWidth: number;
};
margin: number;
'& .SCIncubatorListWidget-intro': {
whiteSpace: string;
};
'& .SCIncubatorListWidget-form': {
marginTop: any;
marginBottom: any;
};
'& .SCIncubatorListWidget-name': {
'& .MuiInputBase-root': {
height: string;
};
};
'& .SCIncubatorListWidget-submitted-message': {
padding: any;
borderRadius: string;
backgroundColor: string;
};
};
};
};
export default Component;