I am using the Mui text field to show the select list component. I was trying to customize the list component, but it's not working.
const List = styled(TextField)({
'& .MuiList-root': {
background: 'white'
}
})
I want to customize the list component using a styled text field. How to solve this issue?