Radio
DaisyUIRadio buttons are used to select a single option from a list.
Basic Radio
Checked
Colors
Different semantic colors.
Sizes
From extra small to extra large.
Disabled
Disabled state.
Code Example
use rsxui::components::{Radio, Color, Size};use rsx_macros::rsx;let html = rsx! { <Radio name="my-radio" />};// With color and checkedlet html = rsx! { <Radio name="my-radio" color={Color::Primary} checked={true} />};Created by Isak Rickyanto@2026