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