import type { AnchorHTMLAttributes } from 'react'; import { cn } from '@/utils/cn'; type ExternalLinkProps = Omit< AnchorHTMLAttributes, 'href' | 'rel' | 'target' > & { href: string; }; export function ExternalLink({ className, ...props }: ExternalLinkProps) { return ( ); }