Components
InputTextArea
A multi-line text field with label, description, and error support.
Usage
import { InputTextArea } from '@acronis-platform/ui-react';InputTextArea wraps a native <textarea> and adds the field furniture — an
optional label (with a required marker), helper description, and error
message. Without a label it renders just the box. Themed by the
--ui-input-text-area-* tokens.
Textareais an alias ofInputTextArea. The legacy bareTextareabox is replaced by this design-system-native field;import { Textarea } from '@acronis-platform/ui-react're-exportsInputTextArea— same props. Without alabelit's a drop-in for the bare textarea. PreferInputTextAreain new code.
Examples
A labeled multi-line field:
<InputTextArea label="Description" placeholder="Add details…" />Required and error states:
<InputTextArea label="Comment" required />
<InputTextArea
label="Comment"
error="This field is required."
/>With helper text and a row count:
<InputTextArea
label="Notes"
description="Markdown is supported."
rows={6}
/>API Reference
Prop
Type