Textarea

DaisyUI

Textarea 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 color
let html = rsx! {
    <Textarea color={Color::Primary} placeholder="Primary" />
};