import { Label as LabelPrimitive } from 'radix-ui' import type { ComponentProps } from 'react' import { cn } from '~/lib/utils' function Label({ className, ...props }: ComponentProps) { return ( ) } export { Label }