/components/checkbox/positionStart
import { checkbox } from "@hedia/hexui/components/checkbox";
import { a, span } from "@hedia/html/elements";
export default function () {
return [
checkbox({
checkboxPosition: "start",
heading: "Heading",
}),
checkbox({
checkboxPosition: "start",
description: "This is a description for the checkbox.",
heading: "Heading",
}),
checkbox({
checkboxPosition: "start",
description: span("I have read and agree to Hedia’s ", a({ href: "#" }, "Terms and conditions")),
required: true,
}),
];
}