Select
DaisyUISelect is a dropdown for choosing from a list of options.
Basic Select
Colors
Different semantic colors.
Sizes
From extra small to extra large.
Code Example
use rsxui::components::{Select, Color, Size};use rsx_macros::rsx;let html = rsx! { <Select> "<option>Option 1</option>" </Select>};// With colorlet html = rsx! { <Select color={Color::Primary}> "<option>Option 1</option>" </Select>};Created by Isak Rickyanto@2026