I'm trying to update the dropdown menu style of my Material UI Select component using createTheme, but I'm having trouble getting it to work. https://i.sstatic.net/zpVjW.png
Here is the code I have so far. Can you spot what might be causing the issue?
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
// palette, typography, etc.
components: {
MuiSelect: {
defaultProps: {
MenuProps: {
PaperProps: {
style: {
boxShadow: '0px 0px 10px rgba(0, 0, 0, 0.2)',
},
},
},
},
styleOverrides: {
// do something
},
},
},
});