Search code examples
reactjsmaterial-uitextfieldstyled-components

Mui list customization


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?


Solution

  • I have tried using SelectProps and it worked

    enter image description here