import * as React from 'react';
import type { SVGProps } from 'react';
const SvgForwardIndicatorIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M10.293 3.293a1 1 0 0 1 1.414 0l4 4q.039.039.073.082l.006.008.016.022.042.059.009.015.007.01.014.027.024.044.007.017.01.02.012.032.015.034.007.025.008.02.005.026.012.037.004.028.006.025.003.027.006.032.002.03.003.028v.026L16 8l-.002.033v.026l-.003.026-.002.032-.006.031-.003.028-.006.024-.004.03-.012.035-.005.027-.008.019-.007.026-.015.033-.012.034-.01.018-.007.018-.024.043-.014.028-.007.009-.009.016-.042.058-.012.019-.004.003-.006.01-.073.081-4 4a1 1 0 0 1-1.414-1.414L12.584 9H1a1 1 0 0 1-.993-.883L0 8a1 1 0 0 1 1-1h11.585l-2.292-2.293a1 1 0 0 1-.083-1.32z"
    />
  </svg>
);
export default SvgForwardIndicatorIcon;
