const LeftArrow = ({ className }: { className?: string }) => {
  return (
    <svg
      width="16"
      height="16"
      viewBox="0 0 16 16"
      fill="currentColor"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M3.8284 9.0001L9.1924 14.3641L7.7782 15.7783L0 8.0001L7.7782 0.222L9.1924 1.6362L3.8284 7.0001L16 7.0001V9.0001L3.8284 9.0001Z"
        fill="currentColor"
      />
    </svg>
  );
};

export { LeftArrow };
