Files
soorya-carpet/bootstrap/ssr/assets/text-link-ByYmiDlq.js
admin eba9e5f182
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
chore: frontend build
2025-10-27 15:27:26 +05:45

24 lines
534 B
JavaScript

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
};