import * as React from 'react';
import type { SVGProps } from 'react';
const SvgRightIndicatorIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M4.574 1.263a1 1 0 0 1 1.413.061l5.5 6 .015.018.01.011.024.032.03.037.009.015.012.015.019.034.025.04.008.018.008.013.02.049.015.03.011.03.013.047.012.037.004.019.004.012.003.025.012.06.001.022.003.044.005.052-.002.015.002.017-.005.051v.035l-.003.009v.023l-.013.058-.003.027-.004.011-.004.02-.012.036-.013.047-.009.022-.017.038-.02.05-.008.012-.008.019-.025.039-.02.035-.011.014-.009.016-.03.036-.023.033-.011.01-.015.019-5.5 6a1 1 0 0 1-1.474-1.352L9.393 8l-4.88-5.324a1 1 0 0 1-.026-1.323z"
    />
  </svg>
);
export default SvgRightIndicatorIcon;
