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

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

function FilterChevron(props: SvgIconProps): React.ReactElement {
  return (
    <Svg width={10} height={7} fill="none" {...props}>
      <Path
        d="M1 1.5l4 4 4-4"
        stroke="#fff"
        strokeWidth={2}
        strokeLinecap="round"
      />
    </Svg>
  )
}

export default FilterChevron
