Textarea
DaisyUITextarea is a multi-line text input field.
Basic Textarea
Colors
Different semantic colors.
Sizes
From extra small to extra large.
Code Example
use rsxui::components::{Textarea, Color, Size};use rsx_macros::rsx;let html = rsx! { <Textarea placeholder="Type here..." />};// With colorlet html = rsx! { <Textarea color={Color::Primary} placeholder="Primary" />};Created by Isak Rickyanto@2026