CoreControl/components/Loading.tsx

19 lines
436 B
TypeScript
Raw Normal View History

2025-05-25 12:12:57 +02:00
"use client"
import { Square } from 'ldrs/react'
import 'ldrs/react/Square.css'
export default function Loading() {
return (
<div className="flex items-center justify-center h-screen">
2025-05-25 12:12:57 +02:00
<Square
2025-05-25 01:14:50 +02:00
size={31}
stroke={5}
strokeLength={0.25}
bgOpacity={0.1}
speed={1.2}
color="white"
/>
</div>
);
}