is there is a way to provide an icon for the input something like <InputAdornment /> in material UI input
Hi, yeah it would be really nice feature, so I will add it in the nearest release (alpha 12)
Hi, about your proposal. It would work for any version of material-ui-picker, because material-ui TextField has an ability to pass the icon to input
Please refer
<DatePicker
InputProps={{
endAdornment: (
<InputAdornment position="end">
<IconButton> add_alarm </IconButton>
</InputAdornment>
)
}}
/>
Also I`ve add this example to the demo
Most helpful comment
Hi, about your proposal. It would work for any version of material-ui-picker, because material-ui TextField has an ability to pass the icon to input
Please refer
Also I`ve add this example to the demo