@nlabs/gothamjs
Version:
Platform
10 lines (9 loc) • 458 B
TypeScript
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>>;