import { forwardRef, type ComponentPropsWithoutRef } from "react"; import { cn } from "#/lib/cn"; export interface CheckboxProps extends ComponentPropsWithoutRef<"input"> { label?: string; } export const Checkbox = forwardRef( ({ className, label, id, disabled, ...props }, ref) => { return ( ); }, ); Checkbox.displayName = "Checkbox";