24 lines
501 B
JavaScript
24 lines
501 B
JavaScript
// ==============================|| OVERRIDES - AUTOCOMPLETE ||============================== //
|
|
|
|
export default function Autocomplete() {
|
|
return {
|
|
MuiAutocomplete: {
|
|
styleOverrides: {
|
|
root: {
|
|
'& .MuiOutlinedInput-root': {
|
|
padding: '3px 9px'
|
|
}
|
|
},
|
|
popupIndicator: {
|
|
width: 'auto',
|
|
height: 'auto'
|
|
},
|
|
clearIndicator: {
|
|
width: 'auto',
|
|
height: 'auto'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|