Skip to main content

Type Alias: TextAreaProps

TextAreaProps = Omit<RACTextFieldProps, "style" | "className" | "children"> & FieldAuthoring<RACTextFieldProps["children"], { rows?: number; }>

Defined in: composites/TextArea/TextArea.tsx:98

Props for the TextArea root.

rows is one-line-only, the same shape placeholder has: React Aria puts it on the <textarea> and the composed form passes it to TextAreaControl directly, so the props form is where it would otherwise be unreachable — which it was until the Studio's settings form asked for a three-row description.