import React from 'react'
import Svg, { Path } from 'react-native-svg'
import { SvgIconProps } from '../components/SvgIcon'

function BackArrow(props: SvgIconProps): React.ReactElement {
  return (
    <Svg width={48} height={48} viewBox="0 0 48 48" {...props}>
      <Path
        d="M23.707 13.293a1 1 0 01.083 1.32l-.083.094L16.415 22h17.94a1 1 0 01.117 1.993l-.117.007c-13.225.004-19.999.004-20.321 0-.323-.004-.57-.102-.741-.293a1 1 0 01-.083-1.32l.083-.094 9-9a1 1 0 011.414 0z"
        fill="#FFF"
        fillRule="nonzero"
      />
    </Svg>
  )
}

export default BackArrow
