This repository has been archived on 2025-08-19. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
coinstorge/website/src/lib/components/self/skeletons/HoldersSkeleton.svelte

28 lines
741 B
Svelte
Raw Normal View History

2025-06-10 18:42:41 +03:00
<script lang="ts">
import { Skeleton } from '$lib/components/ui/skeleton';
</script>
<div class="space-y-4">
{#each Array(3) as _}
<div class="flex items-center gap-2">
<div class="flex min-w-0 flex-1 items-center gap-3">
<Skeleton class="h-8 w-8 flex-shrink-0 rounded-full" />
<div class="min-w-0 flex-1 space-y-1">
<Skeleton class="h-4 w-24" />
<Skeleton class="h-3 w-16" />
</div>
</div>
<div class="flex flex-shrink-0 items-center gap-1.5">
<div class="hidden sm:block">
<Skeleton class="h-5 w-12 rounded-full" />
</div>
<div class="flex flex-col items-end gap-0.5">
<Skeleton class="h-3 w-16" />
<Skeleton class="h-3 w-12" />
</div>
</div>
</div>
{/each}
</div>