import * as React from 'react';
import type { SVGProps } from 'react';
const SvgMenuIndicatorIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M4.646 6.146a.5.5 0 0 1 .708 0L8 8.793l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.227.13l-.084.014h-.086a.5.5 0 0 1-.31-.144l-3-3a.5.5 0 0 1 0-.708"
    />
  </svg>
);
export default SvgMenuIndicatorIcon;
