import * as React from 'react'
import Svg, { Path } from 'react-native-svg'

import { SvgIconProps } from '../components/SvgIcon'

function ArrowRight(props: SvgIconProps) {
  return (
    <Svg width={24} height={24} fill="none" {...props}>
      <Path
        d="M7.757 20.485L16.243 12 7.757 3.515"
        stroke="#fff"
        strokeWidth={2}
        strokeLinejoin="bevel"
      />
    </Svg>
  )
}

export default ArrowRight
