@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
26 lines (25 loc) • 692 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
'&.SCAddUsersButton-contrast-color': {
color: any;
};
};
dialogRoot: () => {
'& .MuiDialogActions-root': {
marginTop: string;
};
'& .SCAddUsersButton-dialog-autocomplete-wrapper': {
gap: string;
'& .SCAddUsersButton-dialog-chip-wrapper': {
flexDirection: string;
gap: string;
flexWrap: string;
};
};
};
};
};
export default Component;