chore: frontend build
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
2025-10-27 15:27:26 +05:45
parent 48e089d3c8
commit eba9e5f182
145 changed files with 10451 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
import { jsx } from "react/jsx-runtime";
import * as LabelPrimitive from "@radix-ui/react-label";
import { c as cn } from "./index-CY6fYws-.js";
function Label({
className,
...props
}) {
return /* @__PURE__ */ jsx(
LabelPrimitive.Root,
{
"data-slot": "label",
className: cn(
"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 as L
};