euv-ui 0.9.1

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
10
11
12
13
/// Display variant for the `euv_logo` component.
///
/// Controls the size and positioning of the logo button:
/// - `Nav` - Inline 32×32 button for the navigation sidebar.
/// - `Fab` - Fixed-position 48×48 button for the floating action button.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub enum LogoButtonVariant {
    /// Inline logo button for the navigation sidebar.
    #[default]
    Nav,
    /// Fixed-position floating action button.
    Fab,
}