import * as React from "react"; import { cn } from "../../lib/utils"; export interface CheckboxProps extends React.InputHTMLAttributes {} export const Checkbox = React.forwardRef( ({ className, ...props }, ref) => { return ( ); } ); Checkbox.displayName = "Checkbox";