use crate::*;
#[derive(Clone, CustomDebug, Data, Default, New)]
pub struct EuvCheckboxProps {
#[get(type(copy))]
pub id: &'static str,
#[get(type(copy))]
pub name: &'static str,
#[get(type(copy))]
pub autocomplete: &'static str,
#[get(type(copy))]
pub checked: Signal<bool>,
#[get(type(copy))]
pub label: &'static str,
}