Textarea
Displays a form textarea or a component that looks like a textarea.
import { Textarea } from "@murasakijs/ui";export function TextareaDemo() {return <Textarea placeholder="Type your message here." />;}Usage
import { Textarea } from "@murasakijs/ui";<Textarea placeholder="Type your message here." />API Reference
Props
Textarea is a thin styled wrapper around the native <textarea> element —
every attribute (placeholder, rows, disabled, value, onChange, ...)
is forwarded straight through.