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