UNPKG

@marlon-chaviano/field-kit

Version:

A collection of reusable and accessible form components built with React, TailwindCSS, and fully integrated with React Hook Form...

8 lines (7 loc) 523 B
import { jsx as _jsx } from "react/jsx-runtime"; import * as LabelPrimitive from "@radix-ui/react-label"; import { cn } from "../../lib/utils"; function Label({ className, ...props }) { return (_jsx(LabelPrimitive.Root, { "data-slot": "label", className: cn("flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50", className), ...props })); } export { Label };