Progress
DaisyUIProgress bar can be used to show the progress of a task or to show the passing of time.
Basic Progress
Colors
Different semantic colors.
Indeterminate
Without a value, it shows an indeterminate animation.
Code Example
use rsxui::components::{Progress, Color};use rsx_macros::rsx;let html = rsx! { <Progress value="70" max="100" color={Color::Primary} />};// Indeterminatelet html = rsx! { <Progress />};Created by Isak Rickyanto@2026