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