import React from "react";
const SwiperArrowRight = (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 Right"
    >
      <path
        d="M4.08301 0.583252L9.69759 6.99992L4.08301 13.4166"
        stroke="black"
      />
    </svg>
  );
};

export default SwiperArrowRight;
