Files
arkvault/src/lib/components/divs/BottomDiv.svelte
2025-01-08 23:50:35 +09:00

8 lines
172 B
Svelte

<script lang="ts">
let { children } = $props();
</script>
<div class="sticky bottom-0 flex flex-col items-center gap-y-2 bg-white pb-4">
{@render children?.()}
</div>