Updated Loading Spinner

This commit is contained in:
headlesdev
2025-05-25 01:14:50 +02:00
parent 2203daa2c3
commit fc2ec2c9a1
3 changed files with 18 additions and 1 deletions

View File

@@ -1,8 +1,17 @@
import { square } from 'ldrs'
square.register()
export default function Loading() {
return (
<div className="flex items-center justify-center h-screen">
<span className="loading loading-ring loading-xl"></span>
<l-square
size={31}
stroke={5}
strokeLength={0.25}
bgOpacity={0.1}
speed={1.2}
color="white"
/>
</div>
);
}