euv_ui/component/logo/view/enum.rs
1/// Display variant for the `euv_logo` component.
2///
3/// Controls the size and positioning of the logo button:
4/// - `Nav` - Inline 32×32 button for the navigation sidebar.
5/// - `Fab` - Fixed-position 48×48 button for the floating action button.
6#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
7pub enum LogoButtonVariant {
8 /// Inline logo button for the navigation sidebar.
9 #[default]
10 Nav,
11 /// Fixed-position floating action button.
12 Fab,
13}