import { ArrowTopRightOnSquareIcon } from '@heroicons/react/24/outline'; export function ExternalLink({ text, href, title, }: { text: string; href: string; title?: string; }) { return ( {text} ); }