Textarea
Multi-line text input with the brutalist dashed-border style. Extends all native textarea attributes.
Import
import { Textarea } from "poyraz-ui/atoms";Default
Basic textarea with placeholder.
<Textarea placeholder="Write something bold..." />With Label
Pair with Label for accessible forms.
<Label htmlFor="message">Message</Label>
<Textarea id="message" placeholder="Write your message..." rows={4} />Disabled
<Textarea placeholder="Cannot type here" disabled />