import React from "react"; import { VariantProps, vcn } from "../shared"; const checkboxColors = { background: { default: "bg-neutral-200 dark:bg-neutral-700", checked: "bg-neutral-300 dark:bg-neutral-400", disabled: 'has-[input[type="checkbox"]:disabled]:bg-neutral-100 dark:has-[input[type="checkbox"]:disabled]:bg-neutral-800', }, checkmark: "text-black dark:text-white", }; const [checkboxVariant, resolveCheckboxVariantProps] = vcn({ base: `inline-block rounded-md p-1 size-6 ${checkboxColors.checkmark} ${checkboxColors.background.disabled} has-[input[type="checkbox"]:disabled]:cursor-not-allowed transition-colors duration-75 ease-in-out`, variants: { checked: { true: `${checkboxColors.background.checked}`, false: `${checkboxColors.background.default}`, }, }, defaults: { checked: false, }, }); interface CheckboxProps extends VariantProps, Omit, "type" | "className"> {} const Checkbox = React.forwardRef( (props, ref) => { const [variantProps, otherPropsCompressed] = resolveCheckboxVariantProps(props); const { defaultChecked, onChange, ...otherPropsExtracted } = otherPropsCompressed; // internally handles checked, so we can use checked value without prop const [checked, setChecked] = React.useState(defaultChecked ?? false); React.useEffect(() => { if (typeof variantProps.checked === "boolean") { setChecked(variantProps.checked); } }, [variantProps.checked]); const internalRef = React.useRef(null); return ( <> ); } ); export { Checkbox };