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