"use client"; import * as React from "react"; import { Label as LabelPrimitive } from "radix-ui"; import { cn } from "@/lib/utils"; /** * Label — Shadcn 風表單標籤(Radix Label 封裝) * * 來源:local-tool/frontend/src/components/ui/label.tsx(100% 沿用) * * 支援: * - peer-disabled / group-data-[disabled=true] 自動降透明度 * - 與 Input 配對時自動聚焦(Radix Label 內建 htmlFor 支援) */ function Label({ className, ...props }: React.ComponentProps) { return ( ); } export { Label };