import * as React from 'react' import Svg, { Path } from 'react-native-svg' import Colors, { ColorValue } from 'src/styles/colors' interface Props { size?: number color?: ColorValue } const LinkArrow = ({ color = Colors.textLink, size = 32 }: Props) => { return ( ) } export default React.memo(LinkArrow)