Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change icon in the KeyboardTimePicker (material-ui-pickers)?

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

like image 406
Anna Chaplygina Avatar asked Jun 03 '19 07:06

Anna Chaplygina


1 Answers

for 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 />}
/>
like image 111
Martin Bielak Avatar answered Oct 05 '22 01:10

Martin Bielak