import type { CheckboxProps } from "$/types/InputTypes"; import clsx from "clsx"; import { forwardRef } from "react"; import MattrixwvCheckbox from "./MattrixwvCheckbox"; const MoltenCheckbox = forwardRef(({ className, box = true, ...props }, ref) => { return ( ); }); MoltenCheckbox.displayName = "MoltenCheckbox"; export default MoltenCheckbox;