import Link from 'next/link'; import { Icon, Row, Text } from '@umami/react-zen'; import { ExternalLink as LinkIcon } from '@/components/icons'; export function ExternalLink({ href, children, ...props }) { return ( {children} ); }