mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 15:36:50 +00:00
17 lines
405 B
TypeScript
17 lines
405 B
TypeScript
import { square } from 'ldrs'
|
|
square.register()
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex items-center justify-center h-screen">
|
|
<l-square
|
|
size={31}
|
|
stroke={5}
|
|
strokeLength={0.25}
|
|
bgOpacity={0.1}
|
|
speed={1.2}
|
|
color="white"
|
|
/>
|
|
</div>
|
|
);
|
|
} |