mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 15:36:50 +00:00
19 lines
436 B
TypeScript
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>
|
|
);
|
|
} |