const RotateIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="19"
      height="12"
      viewBox="0 0 19 12"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M9.44696 0C14.6644 0 18.8945 2.273 18.8945 5.0766C18.8945 7.41974 15.9403 9.39207 11.9237 9.97694V8.04669C14.4943 7.51244 16.3184 6.17193 16.3184 4.60212C16.3184 2.5633 13.2422 0.909933 9.44757 0.909933C5.65293 0.909933 2.57672 2.5633 2.57672 4.60212C2.57672 6.19389 4.45148 7.55025 7.07882 8.06864V7.01844L10.1599 9.2579L7.07882 11.4974V9.99219C3.0079 9.42745 0 7.44108 0 5.07721C0 2.27361 4.22948 0.00060954 9.44757 0.00060954L9.44696 0Z"
        fill="white"
      />
    </svg>
  );
};

export { RotateIcon };
