@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
19 lines (18 loc) • 518 B
JavaScript
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 }) => ({})
}
};
export default Component;