UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

14 lines (13 loc) 424 B
type Props = { className?: string; id?: string; name?: string; value?: string; fullWidth?: boolean; onChange: (event: React.ChangeEvent<HTMLTextAreaElement>) => void; placeholder?: string; maxLength?: number; isInvalid?: boolean; }; export declare const VuiTextArea: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<HTMLTextAreaElement | null>>; export {};