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