mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-19 08:28:10 +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>
|
|
)
|
|
}
|