Is there a css way to change the color of of MUI TextField type time
I'm able to change the time but not the icon
https://stackblitz.com/edit/react-puyjkf-cbnpun?file=demo.js
CodePudding user response:
Try this is will work for you.
Demo.js:
<TextField
sx={{
'& input[type="time"]::-webkit-calendar-picker-indicator': {
filter:
'invert(78%) sepia(66%) saturate(6558%) hue-rotate(84deg) brightness(127%) contrast(116%)',
},
}}
type="time"
variant="outlined"
/>