@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
7 lines (6 loc) • 334 B
TypeScript
type Props = React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> & {
fullWidth?: boolean;
isInvalid?: boolean;
};
export declare const VuiTextArea: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLTextAreaElement | null>>;
export {};