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