/// Display variant for the `logo_button` 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)]pub(crate)enumLogoButtonVariant{/// Inline logo button for the navigation sidebar.
Nav,/// Fixed-position floating action button.
Fab,}