init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
12
lib/components/bio/profile/ExtraItem.svelte
Normal file
12
lib/components/bio/profile/ExtraItem.svelte
Normal file
|
@ -0,0 +1,12 @@
|
|||
<script lang="ts">
|
||||
import type { IconDefinition } from '@fortawesome/free-solid-svg-icons';
|
||||
import Fa from 'svelte-fa';
|
||||
|
||||
export let icon: IconDefinition;
|
||||
export let text: string;
|
||||
</script>
|
||||
|
||||
<div class="flex gap-1 text-text-secondary items-center">
|
||||
<Fa {icon} />
|
||||
<p class="break-words line-clamp-1">{text}</p>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue