import * as React from 'react';
const ArrowRightSwiper = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={31}
    height={31}
    fill='none'
    {...props}
  >
    <path
      fill='#1F2B7B'
      d='M11.621 26.337a.927.927 0 0 1-.662-.275.943.943 0 0 1 0-1.325l8.15-8.15c.6-.6.6-1.575 0-2.175l-8.15-8.15a.943.943 0 0 1 0-1.325.943.943 0 0 1 1.325 0l8.15 8.15c.637.637 1 1.5 1 2.412 0 .913-.35 1.775-1 2.413l-8.15 8.15a.982.982 0 0 1-.663.275Z'
    />
  </svg>
);
export default ArrowRightSwiper;
