Files
aso/frontend/dashboard/src/theme/overrides/Autocomplete.ts
2023-07-03 11:39:08 +07:00

24 lines
591 B
TypeScript

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Autocomplete(theme: Theme) {
return {
MuiAutocomplete: {
styleOverrides: {
paper: {
boxShadow: theme.customShadows.dropdown,
},
listbox: {
padding: theme.spacing(0, 1),
'& .MuiAutocomplete-option': {
padding: theme.spacing(1),
margin: theme.spacing(1, 0),
borderRadius: theme.shape.borderRadius,
},
},
},
},
};
}