Avatar Circles
svelte-animations/avatar-circlesFreeBlock
A component that displays overlapping avatar circles with optional count indicator for showing team members or contributors.
Install it
npx shadcn@latest add https://sv-animations.vercel.app/r/avatar-circles.jsonSource
1<script lang="ts">2 import { cn } from "$UTILS$.js";34 interface Avatar {5 imageUrl: string;6 profileUrl: string;7 }89 interface Props {10 class?: string;11 numPeople?: number;12 avatarUrls: Avatar[];13 }1415 let { class: className, numPeople, avatarUrls }: Props = $props();16</script>1718<div class={cn("z-10 flex -space-x-4 rtl:space-x-reverse", className)}>19 {#each avatarUrls as url, index}20 <a href={url.profileUrl} target="_blank" rel="noopener noreferrer">21 <img22 class="h-10 w-10 rounded-full border-2 dark:border-gray-800"23 src={url.imageUrl}24 width="40"25 height="40"26 alt="Avatar {index + 1}"27 />28 </a>29 {/each}30 {#if (numPeople ?? 0) > 0}31 <a32 class="flex h-10 w-10 items-center justify-center rounded-full border-2 bg-black text-center text-xs font-medium text-white hover:bg-gray-600 dark:border-gray-800 dark:bg-white dark:text-black"33 href="/"34 >35 +{numPeople}36 </a>37 {/if}38</div>
Files it writes
More from Svelte Animations
All 66 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Animated Beamanimated-beam | Svelte Animations | Blocks | Free | 1 dep · 6 files | |
| Animated Circular Progress Baranimated-circular-progress-bar | Svelte Animations | Blocks | Free | no deps · 2 files | |
| Animated Gradient Textanimated-gradient-text | Svelte Animations | Blocks | Free | no deps · 2 files | |
| Animated Grid Patternanimated-grid-pattern | Svelte Animations | Blocks | Free | 1 dep · 2 files | |
| Animated Listanimated-list | Svelte Animations | Blocks | Free | 1 dep · 2 files | |
| Animated Shiny Textanimated-shiny-text | Svelte Animations | Blocks | Free | no deps | |
| Animated Theme Toggleranimated-theme-toggler | Svelte Animations | Blocks | Free | no deps · 2 files | |
| Arc Timelinearc-timeline | Svelte Animations | Blocks | Free | no deps · 3 files |
