mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-13 08:15:21 +02:00
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
import { Loader2 } from "lucide-react";
|
|
|
|
export default function SpinLoader(){
|
|
return(
|
|
<div className="flex items-center justify-center min-h-screen">
|
|
<Loader2 className="w-15 h-15 animate-spin" />
|
|
</div>
|
|
)
|
|
}
|