alternative tangled frontend (extremely wip)
1import type { SVGProps } from "react";
2
3export function Loading(props: SVGProps<SVGSVGElement>) {
4 return (
5 <svg
6 xmlns="http://www.w3.org/2000/svg"
7 width="1em"
8 height="1em"
9 viewBox="0 0 24 24"
10 {...props}
11 >
12 {/* Icon from SVG Spinners by Utkarsh Verma - https://github.com/n3r4zzurr0/svg-spinners/blob/main/LICENSE */}
13 <path
14 fill="currentColor"
15 d="M12,23a9.63,9.63,0,0,1-8-9.5,9.51,9.51,0,0,1,6.79-9.1A1.66,1.66,0,0,0,12,2.81h0a1.67,1.67,0,0,0-1.94-1.64A11,11,0,0,0,12,23Z"
16 >
17 <animateTransform
18 attributeName="transform"
19 dur="0.75s"
20 repeatCount="indefinite"
21 type="rotate"
22 values="0 12 12;360 12 12"
23 />
24 </path>
25 </svg>
26 );
27}