We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a64db74 commit f0d1502Copy full SHA for f0d1502
1 file changed
app/lib/loading.tsx
@@ -1,20 +1,10 @@
1
import React from "react";
2
+import { LightningBoltIcon } from "@heroicons/react/solid";
3
4
export function Loading() {
5
return (
6
<div className="grid place-items-center h-80">
- <svg
7
- className="animate-bounce w-12 h-12 text-green-400"
8
- viewBox="0 0 20 20"
9
- xmlns="http://www.w3.org/2000/svg"
10
- >
11
- <path
12
- fill="currentColor"
13
- fillRule="evenodd"
14
- d="M11.3 1.046A1 1 0 0112 2v5h4a1 1 0 01.82 1.573l-7 10A1 1 0 018 18v-5H4a1 1 0 01-.82-1.573l7-10a1 1 0 011.12-.38z"
15
- clipRule="evenodd"
16
- ></path>
17
- </svg>{" "}
+ <LightningBoltIcon className="animate-bounce w-12 h-12 text-green-400" />
18
</div>
19
);
20
}
0 commit comments