13 lines
373 B
TypeScript
13 lines
373 B
TypeScript
import { Loader2 } from "lucide-react"
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex min-h-[400px] items-center justify-center">
|
|
<div className="flex flex-col items-center gap-2">
|
|
<Loader2 className="h-8 w-8 animate-spin text-blue-500" />
|
|
<p className="text-sm text-slate-600">加载中...</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|