reorganize, package upgrades
This commit is contained in:
parent
cfc83010a0
commit
c13e6285a8
13 changed files with 16 additions and 16 deletions
12
app/components/objects/LoadingSpinner.tsx
Normal file
12
app/components/objects/LoadingSpinner.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { Loader2 } from 'lucide-react';
|
||||
|
||||
const LoadingSpinner: React.FC = () => {
|
||||
return (
|
||||
<div className="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50 z-50">
|
||||
<Loader2 className="w-12 h-12 text-white animate-spin" />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default LoadingSpinner;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue