import { Label as LabelPrimitive } from 'radix-ui'; import * as React from 'react'; import { cn } from '@/shared/lib/cn'; function Label({ className, ...props }: React.ComponentProps) { return ( ); } export { Label };