Textarea

Multi-line text input.

import { Textarea } from "@ps1ui/core";

Basic

<Textarea placeholder="write your thoughts…" />

Rows

<Textarea rows={6} placeholder="write your thoughts…" />

Disabled

<Textarea
  defaultValue="the quick brown fox jumps over the lazy dog"
  disabled
/>

With a label

<Label htmlFor="notes">Notes</Label>
<Textarea id="notes" placeholder="write your thoughts…" />

Props

All native <textarea> attributes are also accepted.