Progress

DaisyUI

Progress 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} />
};
// Indeterminate
let html = rsx! {
    <Progress />
};