init ui
This commit is contained in:
17
ui/components/loading-spinner.tsx
Normal file
17
ui/components/loading-spinner.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
"use client"
|
||||
|
||||
import { Camera } from "lucide-react"
|
||||
|
||||
export function LoadingSpinner() {
|
||||
return (
|
||||
<div className="min-h-screen bg-white flex items-center justify-center">
|
||||
<div className="text-center">
|
||||
<div className="relative">
|
||||
<Camera className="h-16 w-16 text-gray-400 mx-auto mb-4 animate-pulse" />
|
||||
<div className="absolute inset-0 rounded-full border-2 border-gray-200 border-t-gray-400 animate-spin"></div>
|
||||
</div>
|
||||
<p className="text-gray-600 font-light">加载中...</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user