init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
13
lib/components/bio/elements/WidgetRenderContainer.svelte
Normal file
13
lib/components/bio/elements/WidgetRenderContainer.svelte
Normal file
|
@ -0,0 +1,13 @@
|
|||
<script lang="ts">
|
||||
import Name from '../profile/Name.svelte';
|
||||
|
||||
export let hasPreview: boolean = true;
|
||||
</script>
|
||||
|
||||
{#if hasPreview}
|
||||
<slot />
|
||||
{:else}
|
||||
<div class="w-full">
|
||||
<Name identifier={'Loading widget...'} secondaryIdentifier={'Loading...'} placeholder={true} />
|
||||
</div>
|
||||
{/if}
|
Loading…
Add table
Add a link
Reference in a new issue