UNPKG

@nlabs/gothamjs

Version:
10 lines (9 loc) 458 B
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement | HTMLTextAreaElement> { readonly className?: string; readonly defaultValue?: string; readonly hasError?: boolean; readonly inputClass?: string; readonly multiline?: boolean; readonly name: string; } export declare const Input: import("react").ForwardRefExoticComponent<InputProps & import("react").RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;