CoreControl/components/Loading.tsx
2025-05-25 12:12:57 +02:00

19 lines
436 B
TypeScript

"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">
<Square
size={31}
stroke={5}
strokeLength={0.25}
bgOpacity={0.1}
speed={1.2}
color="white"
/>
</div>
);
}