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

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

function ArrowDown(props: SvgIconProps): React.ReactElement {
  return (
    <Svg width={34} height={10} fill="none" {...props}>
      <Path
        d="M32.956.186c-.46-.248-1.205-.248-1.664 0L16.664 8.109 2.008.186C1.548-.062.803-.062.344.186c-.459.248-.459.651 0 .9l15.46 8.356c.23.124.516.186.832.186.287 0 .602-.062.831-.186l15.46-8.357c.488-.248.488-.65.029-.899z"
        fill="#fff"
      />
    </Svg>
  )
}

export default ArrowDown
