How to change color icon date-picker? IMG I've already gone through a lot of options, but still can't find how to change the color of the icon. With the help of '.MuiSelect-icon' it was possible to change the color of the TextFiled select ..
const TextField2 = withStyles({
root: {
'& .MuiInput-underline:after': {
borderBottomColor: '#ffffff',
},
"& .MuiSelect-icon": {
color: "#ffffff"
},
"& .MuiInput-icon": {
color: "#ffffff"
},
},})(TextField);