baublet/w8mngr

View on GitHub
client/components/Loading/ButtonSpinner.tsx

Summary

Maintainability
A
1 hr
Test Coverage
import React from "react";

export function ButtonSpinnerIcon() {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width="24"
      height="24"
      viewBox="0 0 24 24"
      className="animate-spin"
    >
      <path d="M2.803 19.777c-1.574-1.859-2.59-4.2-2.803-6.773h2.009c.201 2.017 1.002 3.859 2.221 5.347l-1.427 1.426zm-.794-8.781c.201-2.017 1.002-3.859 2.22-5.348l-1.426-1.425c-1.574 1.859-2.59 4.2-2.803 6.773h2.009zm10.995-10.996v2.009c2.017.201 3.859 1.002 5.347 2.22l1.426-1.426c-1.859-1.574-4.2-2.59-6.773-2.803zm-7.355 4.229c1.488-1.218 3.33-2.019 5.346-2.22v-2.009c-2.571.213-4.912 1.229-6.772 2.803l1.426 1.426zm14.122 1.42c1.218 1.488 2.019 3.33 2.22 5.346h2.009c-.213-2.572-1.229-4.913-2.803-6.772l-1.426 1.426zm2.22 7.355c-.201 2.016-1.002 3.858-2.22 5.346l1.426 1.426c1.574-1.859 2.59-4.201 2.803-6.772h-2.009zm-10.995 8.987c-2.016-.201-3.858-1.002-5.346-2.22l-1.426 1.426c1.86 1.574 4.201 2.59 6.772 2.803v-2.009zm7.356-2.22c-1.488 1.218-3.331 2.019-5.347 2.22v2.009c2.572-.213 4.914-1.229 6.773-2.803l-1.426-1.426z" />
    </svg>
  );
}