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