@conduction/components
Version:
React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)
11 lines (10 loc) • 419 B
TypeScript
/// <reference types="react" />
import { IReactHookFormProps } from "./types";
export interface ITextAreaProps {
name: string;
ariaLabel: string;
disabled?: boolean;
defaultValue?: string;
hideErrorMessage?: boolean;
}
export declare const Textarea: ({ name, validation, register, errors, disabled, defaultValue, hideErrorMessage, ariaLabel, }: ITextAreaProps & IReactHookFormProps) => JSX.Element;