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