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