import { ExternalLinkIcon } from 'lucide-react' import type { AnchorHTMLAttributes } from 'react' type ExternalLinkProps = Omit< AnchorHTMLAttributes, 'href' | 'rel' | 'target' > & { href: string } export function ExternalLink({ children, ...props }: ExternalLinkProps) { return ( {children} ) }