Checkbox
Checkbox
Usage
use maud_ui::primitives::checkbox;
let html = checkbox::render(checkbox::Props {
name: "terms".into(),
value: "accepted".into(),
label: "I agree to the terms".into(),
id: "terms-cb".into(),
description: Some("Required to continue.".into()),
..Default::default()
});