import { Link } from '@inertiajs/react'; import type { ComponentProps } from 'react'; import { cn } from '@/lib/utils'; type Props = ComponentProps; export default function TextLink({ className = '', children, ...props }: Props) { return ( {children} ); }