import * as React from 'react' import * as LabelPrimitive from '@radix-ui/react-label' import { cn } from '@/lib/utils' export const Label = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function Label({ className, ...props }, ref) { return ( ) })