import { checkbox } from "@hedia/hexui/components/checkbox";
export default function () {
return [
checkbox({
contained: true,
description: "This is a description for the checkbox.",
heading: "Heading",
id: "checkbox-1",
}),
checkbox({
checkboxPosition: "start",
contained: true,
description: "This is a description for the checkbox.",
heading: "Heading",
id: "checkbox-2",
}),
];
}