import { Link } from 'lucide-react'; import React, { type ComponentProps } from 'react'; import { Platform } from 'react-native'; type Props = Omit, 'href'> & { href: string }; export function ExternalLink({ href, ...rest }: Props) { return ( ); }