import * as React from 'react';
const ArrowLeftSwiper = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={31}
    height={31}
    fill='none'
    {...props}
  >
    <path
      fill='#1F2B7B'
      d='M19.379 4.663c.237 0 .475.088.662.275a.943.943 0 0 1 0 1.325l-8.15 8.15c-.6.6-.6 1.575 0 2.175l8.15 8.15a.943.943 0 0 1 0 1.325.943.943 0 0 1-1.325 0l-8.15-8.15c-.637-.637-1-1.5-1-2.412 0-.913.35-1.775 1-2.413l8.15-8.15a.982.982 0 0 1 .663-.275Z'
    />
  </svg>
);
export default ArrowLeftSwiper;
