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