euv-ui 0.10.0

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 visual variant of the `euv_button` component.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum EuvButtonVariant {
    /// A solid button with accent background and contrasting text.
    #[default]
    Primary,
    /// An outline button with transparent background and accent border.
    Outline,
}