Spaces:
Sleeping
Sleeping
| import { Loader2 } from 'lucide-react'; | |
| export function LoadingState({ message = 'Loading...' }: { message?: string }) { | |
| return ( | |
| <div className="flex flex-col items-center justify-center p-12 min-h-[400px]"> | |
| <Loader2 className="h-8 w-8 animate-spin text-primary mb-4" /> | |
| <p className="text-sm text-muted-foreground animate-pulse">{message}</p> | |
| </div> | |
| ); | |
| } | |