Components

Textarea

A multi-line text input. Defaults to vertical resize only.

States

Usage

import { Textarea, Label } from '@onersoft/design-system'

<Label htmlFor="bio">Bio</Label>
<Textarea id="bio" rows={4} placeholder="…" />

Props

PropTypeDefault
invalidbooleanfalse
resize'none' | 'vertical' | 'horizontal' | 'both''vertical'

Plus all native <textarea> attributes (rows, placeholder, disabled, value, onChange, …).

On this page