import type { CheckboxProps } from "$/types/Input"; import { Checkbox } from "@headlessui/react"; import clsx from "clsx"; export default function MattrixwvCheckbox({ id, className, labelClassName, name, size = "sm", box = true, onChange, checked, defaultChecked, strokeWidth = 2, value, children }: CheckboxProps){ return (
{ children &&
{children}
}
); }