UNPKG

react-date-picker

Version:

A date picker for your React app.

14 lines (13 loc) 492 B
type NativeInputProps = { ariaLabel?: string; disabled?: boolean; maxDate?: Date; minDate?: Date; name?: string; onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void; required?: boolean; value?: Date | null; valueType: 'century' | 'decade' | 'year' | 'month' | 'day'; }; export default function NativeInput({ ariaLabel, disabled, maxDate, minDate, name, onChange, required, value, valueType, }: NativeInputProps): React.ReactElement; export {};