usecrate::*;/// Props for the `euv_logo` component.
////// Defines the strongly-typed interface for a branded logo button
/// that renders the "E" letter with a gradient background.
#[derive(Clone, CustomDebug, Data, Default, New)]pubstructEuvLogoProps{/// The display variant controlling size and positioning.
#[get(type(copy))]pubvariant: LogoButtonVariant,
/// Optional click event handler.
#[debug(skip)]pubon_click:Option<Rc<dyn Fn(Event)>>,
}