I am using react-dates but I can't find any way of changing the css of the input field.
e.g. border, background color etc. since the regular css doesn't work with react-dates.
<SingleDatePicker
date={this.state.dateOfPurchase}
onDateChange={date => {
this.setState({ dateOfPurchase: date })
}}
focused={this.state.focused}
onFocusChange={({ focused }) => this.setState({ focused })}
id="your_unique_id"
isOutsideRange={day => !isInclusivelyBeforeDay(day, moment())}
numberOfMonths= "1"
/>