usecrate::*;/// Props for the `my_badge` component.
////// Defines the strongly-typed interface for the badge status indicator.
pubstructMyBadgeProps{/// The badge background/border color.
pubcolor: String,
/// The badge text content.
pubtext: String,
/// Whether to render in outline style instead of solid fill.
puboutline:bool,
/// Optional click event handler.
pubon_click:Option<NativeEventHandler>,
}