yew_ui/components/
theme.rs

1#[derive(PartialEq, Debug)]
2pub enum TypeStyle {
3    Primary,
4    Warning,
5    Danger,
6    Success,
7    Info,
8    Default,
9}
10
11impl Default for TypeStyle {
12    fn default() -> Self {
13        Self::Default
14    }
15}