import * as React from 'react';
import DateInput from '../index';
function DateInputWithMandatoryProps() {
return ;
}
function DateInputWithAllProps() {
return (
}
dataHook="hook"
dateFormat={'12/01/19'}
dateFormatV2={'12/01/19'}
defaultValue="value"
disableEditing
disabled
forceFocus
forceHover
hideStatusSuffix
id="1"
locale="en"
max={10}
maxLength={100}
menuArrow
min={5}
name="name"
noLeftBorderRadius
noRightBorderRadius
onBlur={_ev => {}}
onChange={_ev => {}}
onClear={_ev => {}}
onCompositionChange={_isComposing => {}}
onEnterPressed={_ev => {}}
onEscapePressed={_ev => {}}
onFocus={_ev => {}}
onInputClicked={_ev => {}}
onKeyDown={_ev => {}}
onKeyUp={_ev => {}}
onPaste={_ev => {}}
placeholder="placeholder"
prefix={
}
readOnly
ref={React.createRef()}
required
roundInput
rtl
size="large"
status="error"
statusMessage="msg"
step={1}
suffix={}
tabIndex={0}
textOverflow="clip"
tooltipPlacement="bottom"
type="text"
value="value"
withSelection
/>
);
}