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

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

const TriangleDown = (props: SvgIconProps): React.ReactElement => (
  <Svg width={11} height={9} fill="none" {...props}>
    <Path
      d="M5.802 8.267a1 1 0 0 1-1.6 0l-4-6.334a1 1 0 0 1 .8-1.6h8a1 1 0 0 1 .8 1.6l-4 6.334Z"
      fill="#fff"
    />
  </Svg>
)

export default TriangleDown
