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