20 lines
528 B
JavaScript
20 lines
528 B
JavaScript
import { jsx } from "react/jsx-runtime";
|
|
import { c as cn } from "./utils-DLCPGU0v.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
|
|
};
|