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,23 @@
import { jsx } from "react/jsx-runtime";
import { c as cn } from "./index-CY6fYws-.js";
import { Link } from "@inertiajs/react";
function TextLink({
className = "",
children,
...props
}) {
return /* @__PURE__ */ jsx(
Link,
{
className: cn(
"text-foreground underline decoration-neutral-300 underline-offset-4 transition-colors duration-300 ease-out hover:decoration-current! dark:decoration-neutral-500",
className
),
...props,
children
}
);
}
export {
TextLink as T
};