import * as React from 'react';
import type { SVGProps } from 'react';
const SvgDownIndicatorIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M14.487 4.574a1 1 0 0 1-.061 1.413l-6.03 5.526-.068.053-.03.02-.074.045-.14.062-.115.033-.086.015-.117.009-.15-.009-.116-.022-.083-.026-.11-.046-.03-.016-.105-.065-.098-.079-6-5.5a1 1 0 1 1 1.352-1.474l5.324 4.88 5.324-4.88a1 1 0 0 1 1.323-.026z"
    />
  </svg>
);
export default SvgDownIndicatorIcon;
