[WIP] book tracker on the atmosphere~
1<script lang="ts">
2 let { title, children, props = {} } = $props();
3</script>
4
5<div {...props}>
6 <div class="rounded-lg border border-ctp-surface1 bg-ctp-surface0 shadow-lg">
7 <div class="border-b border-ctp-surface1 px-6 py-4">
8 <h3 class="text-lg font-semibold text-ctp-text">{title}</h3>
9 </div>
10 <div class="p-6">
11 {@render children()}
12 </div>
13 </div>
14</div>