init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
7
lib/components/bio/profile/Description.svelte
Normal file
7
lib/components/bio/profile/Description.svelte
Normal file
|
@ -0,0 +1,7 @@
|
|||
<script lang="ts">
|
||||
export let description: string | null | undefined = undefined;
|
||||
</script>
|
||||
|
||||
{#if description}
|
||||
<p class="text-text-primary break-words whitespace-pre-wrap">{description.trim()}</p>
|
||||
{/if}
|
Loading…
Add table
Add a link
Reference in a new issue