"use client"; import * as React from "react" import * as LabelPrimitive from "@radix-ui/react-label" import { cls } from "../util"; import { defaultBorderMixin } from "../styles"; type LabelProps = React.ComponentPropsWithoutRef & { border?: boolean, onClick?: React.MouseEventHandler }; const Label = React.forwardRef< React.ElementRef, LabelProps >(({ className, border, onClick, ...props }, ref) => ( )) Label.displayName = LabelPrimitive.Root.displayName export { Label }