()
| 450 | } |
| 451 | |
| 452 | export function LoadingCircle() { |
| 453 | return ( |
| 454 | <svg |
| 455 | width="14" |
| 456 | height="14" |
| 457 | viewBox="0 0 24 24" |
| 458 | fill="none" |
| 459 | xmlns="http://www.w3.org/2000/svg" |
| 460 | > |
| 461 | <path |
| 462 | d="M12 2V6M12 18V22M6 12H2M22 12H18M19.0784 19.0784L16.25 16.25M19.0784 4.99994L16.25 7.82837M4.92157 19.0784L7.75 16.25M4.92157 4.99994L7.75 7.82837" |
| 463 | stroke="currentColor" |
| 464 | stroke-width="2" |
| 465 | stroke-linecap="round" |
| 466 | stroke-linejoin="round" |
| 467 | /> |
| 468 | <animateTransform |
| 469 | attributeName="transform" |
| 470 | attributeType="XML" |
| 471 | type="rotate" |
| 472 | from="0" |
| 473 | to="360" |
| 474 | dur="2s" |
| 475 | repeatCount="indefinite" |
| 476 | /> |
| 477 | </svg> |
| 478 | ) |
| 479 | } |
| 480 | |
| 481 | export function XCircle() { |
| 482 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected