Skip to main content

TextAreaField()

TextAreaField(__namedParameters): Element

TextAreaField - A multi-line text input component with label and validation

Provides a complete form field experience for longer text content with integrated label, description, and error message components. Handles validation states and accessibility automatically while supporting resizable text areas.

Parameters

__namedParameters

TextAreaFieldProps

Returns

Element

Examples

// Basic text area field
<TextAreaField label="Comments" />
// Text area with validation
<TextAreaField
isInvalid={true}
errorMessage='Message is required'
label='Foo'
isRequired
/>