Spaces:
Runtime error
Runtime error
Upload components/TmaLoader.tsx with huggingface_hub
Browse files- components/TmaLoader.tsx +10 -0
components/TmaLoader.tsx
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React from 'react';
|
| 2 |
+
|
| 3 |
+
export default function TmaLoader() {
|
| 4 |
+
return (
|
| 5 |
+
<div className="flex flex-col items-center justify-center py-10">
|
| 6 |
+
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-tg-secondary"></div>
|
| 7 |
+
<p className="mt-4 text-tg-textSecondary text-sm">Loading...</p>
|
| 8 |
+
</div>
|
| 9 |
+
);
|
| 10 |
+
}
|