import type { InputHTMLAttributes, ReactNode } from "react"; import { cn } from "../../lib/cn"; export type CheckboxProps = InputHTMLAttributes & { label?: ReactNode; }; export function Checkbox({ className, label, ...props }: CheckboxProps) { return ( ); }