import { ExternalLink } from 'lucide-react'; import { Icon } from '@@/Icon'; interface Props { to: string; text: string; } export function ExternalIPLink({ to, text }: Props) { return ( {text} ); }