teoldalad/lib/components/bio/elements/WidgetRenderContainer.svelte
2024-03-13 00:30:45 +01:00

13 lines
291 B
Svelte

<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}