import * as React from 'react' import * as LabelPrimitive from '@radix-ui/react-label' import { cn } from '@/lib/utils' export interface LabelProps extends React.ComponentPropsWithoutRef { /** Font weight: 'normal' or 'medium' */ weight?: 'normal' | 'medium' } const weightClass = { normal: 'font-normal', medium: 'font-medium', } as const const Label = React.forwardRef< React.ElementRef, LabelProps >(({ className, weight = 'medium', ...props }, ref) => ( )) Label.displayName = LabelPrimitive.Root.displayName export { Label }