How do I change the dropdown icon in material-ui select field?

CKA picture CKA · Apr 24, 2018 · Viewed 13.9k times · Source

I am using material-ui select field. I want to change the given drop down icon to a different font icon. How to achieve this? I don't see any option to over-ride this style

Answer

Yevgeni Makarovich picture Yevgeni Makarovich · Apr 26, 2019

Nowadays, the best way as for me, it's just

import Select from '@material-ui/core/Select';
import Person from '@material-ui/icons/Person';
 <Select
   IconComponent = {Person}
 />

Works perfectly without any css additions.