This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / components / ui / EmptyState.svelte
417 B 16 lines
1<script lang="ts"> 2 import type { Snippet } from "svelte"; 3 4 interface Props { 5 message: string; 6 children?: Snippet; 7 } 8 9 let { message, children }: Props = $props(); 10</script> 11 12<div 13 class="flex items-center justify-center rounded-sm border border-border-default p-12 typography-paragraph-large text-foreground-subtle italic" 14> 15 <span class="flex items-center gap-2">{message}{@render children?.()}</span> 16</div>