2025-03-30 17:32:22 -03:00
|
|
|
|
|
|
|
import { Link } from 'lucide-react';
|
|
|
|
import React, { type ComponentProps } from 'react';
|
2025-03-30 16:42:51 -03:00
|
|
|
import { Platform } from 'react-native';
|
|
|
|
|
|
|
|
type Props = Omit<ComponentProps<typeof Link>, 'href'> & { href: string };
|
|
|
|
|
|
|
|
export function ExternalLink({ href, ...rest }: Props) {
|
|
|
|
return (
|
|
|
|
<Link
|
|
|
|
target="_blank"
|
|
|
|
{...rest}
|
|
|
|
href={href}
|
2025-03-30 17:32:22 -03:00
|
|
|
|
2025-03-30 16:42:51 -03:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|