How can I place the calendar icon after the react-datepicker? Currently, everytime I'll click the datepicker, it'll go after the line of the date-picker and does not stay beside it.
These are the codes: https://codesandbox.io/s/festive-wescoff-71z8u?file=/src/App.js
<label>
<DatePicker
wrapperClassName="datePicker"
selected={startDate}
onChange={(date) => setStartDate(date)}
showTimeSelect
dateFormat="dd/MM/yyyy hh:mm a"
timeFormat="hh:mm a"
/>
<TodayIcon />
</label>