blob: 9a6ad51dcaaddff88033cbc3706b4860c1e24d46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<script lang="ts">
export let title: string;
</script>
<section class="flex flex-col gap-1">
<h2 class="text-base font-medium">{title}</h2>
<div class="flex flex-wrap gap-1 text-gray-300">
<slot />
</div>
</section>
|