dioxus-daisyui 0.8.0

Dioxus daisyui
Documentation
use crate::ext::*;

// https://daisyui.com/components/alert/
constant!(alert);

// Modifier
constant!(alert info);
constant!(alert success);
constant!(alert warning);
constant!(alert error);

// https://daisyui.com/components/loading/
constant!(loading);

// Modifier
constant!(loading spinner);
constant!(loading dots);
constant!(loading ring);
constant!(loading ball);
constant!(loading bars);
constant!(loading infinity);

// https://daisyui.com/components/progress/
constant!(progress);

// Modifier
constant!(progress primary);
constant!(progress secondary);
constant!(progress accent);
constant!(progress info);
constant!(progress success);
constant!(progress warning);
constant!(progress error);

// https://daisyui.com/components/radial-progress/
constant!(radial progress);

// https://daisyui.com/components/skeleton/
constant!(skeleton);

// https://daisyui.com/components/toast/
constant!(toast);

// Responsive
constant!(toast start);
constant!(toast center);
constant!(toast end);
constant!(toast top);
constant!(toast middle);
constant!(toast bottom);

// https://daisyui.com/components/tooltip/
constant!(tooltip);
constant!(tooltip open);

// Modifier
constant!(tooltip primary);
constant!(tooltip secondary);
constant!(tooltip accent);
constant!(tooltip info);
constant!(tooltip success);
constant!(tooltip warning);
constant!(tooltip error);

// Responsive
constant!(tooltip top);
constant!(tooltip bottom);
constant!(tooltip left);
constant!(tooltip right);