Auxx.ai

<Textarea />

Multi-line text input component for Auxx app dialogs.

A multi-line text input for longer content.

import { Textarea } from '@auxx/sdk/client'

<Textarea placeholder="Write your message..." rows={4} />
<Textarea value={notes} onChange={(e) => setNotes(e.target.value)} />

For form-based textareas with validation, use FormField with Forms.string().multiline().

Props

PropTypeDefaultDescription
valuestring?Controlled value
placeholderstring?Placeholder text
disabledboolean?falseDisable the textarea
namestring?Form field name
rowsnumber?Number of visible text lines
onChange(event: ChangeEvent) => voidChange handler

On this page