import React from 'react'; import { Linking, Platform } from 'react-native'; import { LinkProps } from './Text.types'; import Text from '../primitives/Text'; export function A({ href, target, download, rel, ...props }: LinkProps) { const nativeProps = Platform.select({ web: { href, hrefAttrs: { target, download, rel, }, }, default: { onPress: (event) => { props.onPress && props.onPress(event); if (Platform.OS !== 'web' && href !== undefined) { Linking.openURL(href); } }, }, }); return ; }