import { cn } from "@/lib/utils"; import type { FC, ReactNode } from "react"; interface TextLinkProps extends React.AnchorHTMLAttributes { children?: ReactNode; className?: string; disabled?: boolean; } export const TextLink: FC = ({ children, className, disabled = false, ...props }) => { return ( {children} ); };