UNPKG

es-grid-template

Version:

es-grid-template

27 lines (26 loc) 650 B
import type { HTMLInputTypeAttribute } from "react"; interface IFFormInput { id?: any; control: any; name: string; type?: HTMLInputTypeAttribute; label: string; labelSize?: string; required?: boolean; errors?: any; height?: number | string; disabled?: boolean; row?: number; isLabel?: boolean; inLine?: boolean; autoFocus?: boolean; placeholder?: string; classes?: string; callback?: any; readOnly?: boolean; isView?: boolean; t?: any; onKeyDown?: (event: any) => void; } declare const InputControl: (props: IFFormInput) => JSX.Element; export default InputControl;