es-grid-template
Version:
es-grid-template
28 lines (27 loc) • 683 B
TypeScript
import type { HTMLInputTypeAttribute } from "react";
import React 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) => React.JSX.Element;
export default InputControl;