UNPKG

brightyui

Version:

Brighty UI library

16 lines (15 loc) 396 B
import React, { FC } from 'react'; interface InputProps { className?: string; value?: string; onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void; placeholder?: string; name?: string; disabled?: boolean; error?: string; hint?: string; onDelete?: () => void; deletable?: boolean; } declare const DateInput: FC<InputProps>; export default DateInput;