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