@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
21 lines (20 loc) • 598 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .SCUserAutocomplete-info': {
marginTop: theme.spacing(3),
display: 'flex',
[theme.breakpoints.up('sm')]: {
alignItems: 'center'
},
'& .MuiIcon-root': {
marginRight: theme.spacing(0.5)
}
}
}),
autocompleteRoot: ({ theme }) => ({})
}
};
exports.default = Component;