Как в antdesign переместить курсор в начало input на IE 11?
Как можно в ant design сделать, что если в input текст превышает размеры поля при событии Blur на input. Текст в поле input переходил в начало введенного текста?

import React from 'react';
import { Input } from 'antd';
const onInputEvent = (e) => {
e.target
}
<Input
placeholder="[email protected]"
required
onBlur={onInputEvent}
/>