usecrate::*;/// Props for the `euv_badge` component.
////// Defines the strongly-typed interface for the badge status indicator.
#[derive(Clone, CustomDebug, Data, Default, New)]pubstructEuvBadgeProps{/// Whether to render in outline style instead of solid fill.
#[get(type(copy))]puboutline:bool,
/// The badge text content.
#[get(type(copy))]pubtext:&'staticstr,
/// Optional click event handler.
#[debug(skip)]pubon_click:Option<Rc<dyn Fn(Event)>>,
}