LPX55 commited on
Commit
ba968c4
·
verified ·
1 Parent(s): 9f131c9

Upload components/TmaLoader.tsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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
+ }