@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
29 lines (28 loc) • 964 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'&.SCAddUsersButton-default-contrast-color': {
color: theme.palette.getContrastText(theme.palette.background.default)
}
}),
dialogRoot: ({ theme }) => ({
'& .SCAddUsersButton-dialog-paper-contrast-color': {
color: theme.palette.getContrastText(theme.palette.background.paper)
},
'& .MuiDialogActions-root': {
marginTop: '36px'
},
'& .SCAddUsersButton-dialog-autocomplete-wrapper': {
gap: '10px',
'& .SCAddUsersButton-dialog-chip-wrapper': {
flexDirection: 'row',
gap: '5px',
flexWrap: 'wrap'
}
}
})
}
};
exports.default = Component;