import React from "react";
const SwiperArrowLeft = (className: any) => {
  return (
    <svg
      className={className}
      xmlns="http://www.w3.org/2000/svg"
      width="14"
      height="14"
      viewBox="0 0 14 14"
      fill="none"
      role="img"
      aria-labelledby="Swiper Arrow Left"
    >
      <path
        d="M9.69824 13.4167L4.08366 7.00008L9.69824 0.583415"
        stroke="black"
      />
    </svg>
  );
};

export default SwiperArrowLeft;
