import { ReactNode } from "react"; interface Props { href: string; children: ReactNode; } export const ExternalLink = ({ href, children }: Props) => ( {children} );