import { forwardRef } from "react"; interface CheckboxProps { label?: string; className?: string; name?: string; defaultValue?: boolean; } const Checkbox = forwardRef(function checkbox( { label, className, name, defaultValue }, ref, ) { const classNames = `checkbox ${className}`; return ( ); }); export default Checkbox;