← All components

Textarea

Multi-line text for notes, comments, and descriptions.

Example

import { Label } from "matcha-ui";
import { Textarea } from "matcha-ui";

<div className="grid w-full max-w-md gap-2">
  <Label htmlFor="msg">Message</Label>
  <Textarea id="msg" placeholder="Write something…" rows={4} />
</div>