@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
11 lines (10 loc) • 448 B
TypeScript
import { default as React } from 'react';
export declare const TextArea: React.ForwardRefExoticComponent<{
label?: string;
description?: string;
invalid?: boolean;
invalidMessage?: string;
autoAdjustHeight?: boolean;
requiredLabel?: string;
fullWidth?: boolean;
} & Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;