MCPcopy Create free account
hub / github.com/triggerdotdev/jsonhero-web / LoadingIcon

Function LoadingIcon

app/components/Icons/LoadingIcon.tsx:1–27  ·  view source on GitHub ↗
(props: React.SVGProps<SVGSVGElement>)

Source from the content-addressed store, hash-verified

1export function LoadingIcon(props: React.SVGProps<SVGSVGElement>) {
2 return (
3 <svg
4 className={props.className}
5 xmlns="http://www.w3.org/2000/svg"
6 width="26"
7 height="26"
8 viewBox="0 0 26 26"
9 fill="none"
10 >
11 <circle
12 cx="13"
13 cy="13"
14 r="10"
15 stroke="black"
16 strokeOpacity="0.3"
17 strokeWidth="4"
18 />
19 <path
20 d="M13 23C7.47715 23 3 18.5228 3 13"
21 stroke="#4338CA"
22 strokeWidth="4"
23 strokeLinecap="round"
24 />
25 </svg>
26 );
27}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected