import * as React from 'react';
import type { SVGProps } from 'react';
const SvgBackwardIndicatorIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M5.707 3.293a1 1 0 0 0-1.414 0l-4 4-.073.082-.064.089-.054.096-.007.017-.01.02-.012.032-.015.034-.015.045-.005.026-.012.037-.004.028-.006.025-.01.06-.001.029-.003.028v.026L0 8l.002.033v.026l.003.026.002.032.009.06.006.023.004.03.012.035.005.027.015.045.015.033.012.034.01.018.007.018.054.096.042.058.012.019.01.012.073.082 4 4a1 1 0 1 0 1.414-1.414L3.416 9H15a1 1 0 0 0 .993-.883L16 8a1 1 0 0 0-1-1H3.415l2.292-2.293a1 1 0 0 0 .083-1.32z"
    />
  </svg>
);
export default SvgBackwardIndicatorIcon;
