use crate::*;
#[derive(Data, Debug, Default, New)]
pub(crate) struct PrimaryButtonProps {
#[get(pub(crate))]
#[set(pub(crate))]
pub(crate) label: String,
#[get(pub(crate))]
#[set(pub(crate))]
pub(crate) onclick: Option<NativeEventHandler>,
#[get(pub(crate), type(copy))]
#[set(pub(crate))]
pub(crate) disabled: bool,
}