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