init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
11
lib/components/bio/profile/Badges.svelte
Normal file
11
lib/components/bio/profile/Badges.svelte
Normal file
|
@ -0,0 +1,11 @@
|
|||
<script lang="ts">
|
||||
import Badge from './Badge.svelte';
|
||||
|
||||
export let badges: BioSiteBadge[];
|
||||
</script>
|
||||
|
||||
<div class="flex gap-0.5 items-center flex-wrap">
|
||||
{#each badges as badge}
|
||||
<Badge {badge} />
|
||||
{/each}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue