UNPKG

@boxyhq/react-ui

Version:

React UI components from BoxyHQ

14 lines (13 loc) 388 B
type TextAreaProps = { id: string; label: string; value: string; classNames?: { textarea?: string; label?: string; container?: string; }; handleInputChange: (e: any) => void; } & JSX.InputHTMLAttributes<HTMLTextAreaElement>; declare function TextArea(props: TextAreaProps): import("react/jsx-runtime").JSX.Element; export default TextArea;