Loading
DaisyUILoading shows an animation to indicate that something is loading.
Styles
Different animation styles.
Sizes
From extra small to extra large.
Colors
Use Tailwind text color utilities.
Code Example
use rsxui::components::{Loading, LoadingStyle, Size};use rsx_macros::rsx;let html = rsx! { <Loading style={LoadingStyle::Spinner} size={Size::Lg} />};// With colorlet html = rsx! { <Loading class="text-primary" />};Created by Isak Rickyanto@2026