Files
sigpro-ui/components/fieldset.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

10 lines
269 B
JavaScript

// components/Fieldset.js
import { h } from "sigpro";
export const Fieldset = (props, children) => h("fieldset", {
...props,
class: `fieldset ${props.class ?? ''}`
}, [
props.legend ? h("legend", { class: "fieldset-legend" }, props.legend) : null,
children
]);