Textarea
Share your feedback
Tell us what worked and what didn't. We read every response.
Min 20 characters0 / 500
Profile
Shown on your public profile and attribution lines.
Tip: mention where you work, what you build, and where folks can find you.
Admin notes
Read-only. Changes require a support ticket.
Last updated by Sofia M. · 6 days ago
Usage
use maud_ui::primitives::textarea;
let html = textarea::render(textarea::Props {
name: "bio".into(),
placeholder: "Tell us about yourself...".into(),
rows: 6,
id: "bio-field".into(),
resize: textarea::Resize::Vertical,
..Default::default()
});