mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-05-10 22:01:16 +00:00
19 lines
521 B
TypeScript
19 lines
521 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
export default function VendorsLoading() {
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="flex items-center justify-between">
|
|
<Skeleton className="h-8 w-40" />
|
|
<Skeleton className="h-9 w-28" />
|
|
</div>
|
|
<Skeleton className="h-10 w-full" />
|
|
<div className="space-y-2">
|
|
{Array.from({ length: 5 }).map((_, i) => (
|
|
<Skeleton key={i} className="h-10 w-full" />
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|