euv-ui 0.8.22

Reusable UI component library for the euv framework, providing buttons, cards, modals, inputs, and more.
Documentation
1
2
3
4
5
6
7
8
9
/// The alert variant determining the visual style.
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
pub enum AlertVariant {
    /// A success alert with green styling.
    #[default]
    Success,
    /// An error alert with red styling.
    Error,
}