Home > front end >  How change Time pickers icon color in material-ui
How change Time pickers icon color in material-ui

Time:09-22

I need to change the default icon colour in Time pickers. but I don't know the way. If you can help me with this, It's really mean to me. Changes can see the below picture.

enter image description here

CodePudding user response:

Use the class css-i4bv87-MuiSvgIcon-root:

.css-i4bv87-MuiSvgIcon-root{
  color: red;
}

You can check this demo

  • Related