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 ArrowRightThick = ({ color = colors.contentPrimary, size = 24 }: Props) => ( ) export default React.memo(ArrowRightThick)