teoldalad/lib/components/dashboard/modal/Category.svelte
2024-03-13 00:30:45 +01:00

8 lines
217 B
Svelte

<script lang="ts">
export let title: string;
</script>
<div class="flex-grow flex flex-col gap-4 justify-center">
<div class="text-2xl leading-[.8] text-text-header font-semibold">{title}</div>
<slot />
</div>