import { Link } from '@inertiajs/react'; import { ComponentProps } from 'react'; import { cn } from '@/common/helpers/cn'; type LinkProps = ComponentProps; export function TextLink({ className = '', children, ...props }: LinkProps) { return ( {children} ); }