import * as React from 'react' import Svg, { Path } from 'react-native-svg' import colors, { ColorValue } from 'src/styles/colors' interface Props { color?: ColorValue size?: number } const OpenLinkIcon = ({ color = colors.contentPrimary, size = 12 }: Props) => ( ) export default OpenLinkIcon