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 / timeline / TimelineCard.svelte
465 B 17 lines
1<script lang="ts"> 2 import type { Snippet } from "svelte"; 3 import Card from "$lib/components/ui/Card.svelte"; 4 5 let { header, children }: { header: Snippet; children: Snippet } = $props(); 6</script> 7 8<Card border shadow background padding="none"> 9 <div 10 class="flex flex-wrap items-center gap-2 border-b border-border-default px-6 py-3 text-sm text-foreground-muted" 11 > 12 {@render header()} 13 </div> 14 <div class="px-6 py-4"> 15 {@render children()} 16 </div> 17</Card>