I can't change the icon in the KeyboardTimePicker
. I read about the KeyboardButtonProps
and InputAdornmentProps
but I don't understand how can it help me...
my KeyboardTimePicker
I can't change the icon in the KeyboardTimePicker
. I read about the KeyboardButtonProps
and InputAdornmentProps
but I don't understand how can it help me...
my KeyboardTimePicker
Share Improve this question edited May 9, 2020 at 9:26 Olivier Tassinari 8,6814 gold badges25 silver badges26 bronze badges asked Jun 3, 2019 at 7:15 Anna ChaplyginaAnna Chaplygina 831 silver badge6 bronze badges1 Answer
Reset to default 19for keyboard icon there was created new prop : keyboardIcon
import Favorite from '@material-ui/icons/Favorite'
...
<KeyboardTimePicker
label="Masked timepicker"
placeholder="08:00 AM"
mask="__:__ _M"
value={selectedDate}
onChange={handleDateChange}
keyboardIcon={<Favorite />}
/>