UNPKG

react-base-guide

Version:

react ui components

17 lines (16 loc) 504 B
import { InputHTMLAttributes, ChangeEventHandler } from "react"; import { StyleProps } from "../../utils/add-custom-style"; interface InputProps extends InputHTMLAttributes<HTMLInputElement> { rootRef?: any; label?: string; message?: string; error?: boolean; success?: boolean; warning?: boolean; clear?: boolean; onClear?: ChangeEventHandler; autoComplete?: "on" | "off"; autoFocus?: boolean; styled?: StyleProps; } export default InputProps;