usecrate::*;/// Props for the `primary_button` component.
////// Defines the strongly-typed interface for the primary button.
#[derive(Data, Debug, Default)]pubstructPrimaryButtonProps{/// The button label text, used as fallback when no children are provided.
publabel: String,
/// Optional click event handler.
pubonclick:Option<NativeEventHandler>,
}