const GoToIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="19"
      height="18"
      viewBox="0 0 19 18"
      fill="currentColor"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M7.5 3V5H2.5V16H13.5V11H15.5V17C15.5 17.5523 15.0523 18 14.5 18H1.5C0.94772 18 0.5 17.5523 0.5 17V4C0.5 3.44772 0.94772 3 1.5 3H7.5ZM18.5 0V8H16.5L16.4999 3.413L8.7071 11.2071L7.29289 9.7929L15.0849 2H10.5V0H18.5Z"
        fill="currentColor"
      />
    </svg>
  );
};

export { GoToIcon };
