Material UI KeyboardDatePicker is the component I'm currently using. https://i.sstatic.net/It50L.png
In order to remove the black line visible in the datepicker (as shown in the screenshot), what steps should I take?
Displayed below is the code snippet for my datepicker.
<KeyboardDatePicker
error={this.state.quickRegFormErrors["dob"]||this.state.quickRegFormErrors["form_dob"] }
helperText={(this.state.quickRegFormErrors["dob"] && "Date Of Birth is Required") || (this.state.quickRegFormErrors["form_dob"]) }
required
id="dob"
name="dob"
style={{width:"80%", marginTop:"15px"}}
clearable
value={this.state.dob}
placeholder="dd/mm/yyyy"
onChange={this.dateOnChange}
format="dd/MM/yyyy"
disableFuture= {true}
autoOk={true}
className="quick-reg-datepicker"
/>