Files
sigpro-ui/components/checkbox.js
natxocc 59e6d972a8
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s
changed to new functions
2026-04-22 12:06:34 +02:00

4 lines
173 B
JavaScript

// components/Checkbox.js
import { h } from "sigpro";
export const Checkbox = (props) => h("input", { ...props, type: "checkbox", class: `checkbox ${props.class ?? ''}` });