Textarea
Displays a form textarea or a component that looks like a textarea.
Example
Code
Example
import { Textarea } from "cephalopod-design-system"
import { Label } from "cephalopod-design-system"
<div className="grid w-full gap-1.5">
<Label htmlFor="message">Your message</Label>
<Textarea placeholder="Type your message here." id="message" />
</div>