feat: Most settings implemented
Some checks failed
/ build (push) Failing after 1m26s
/ check-changes (push) Successful in 8s

This commit is contained in:
Djuri 2025-05-04 02:12:17 +02:00
parent f8c2f4f228
commit 98ad7d1432
Signed by: djuri
GPG key ID: 61B9B2DDE5AA3AC1
41 changed files with 1976 additions and 421 deletions

View file

@ -1,5 +1,5 @@
<script lang="ts">
let { title, className = '', ...restProps } = $props();
let { title = '', className = '', children, ...restProps } = $props();
</script>
<div class="card bg-base-100 w-full shadow-xl {className}" {...restProps}>
@ -7,6 +7,6 @@
{#if title}
<h2 class="card-title">{title}</h2>
{/if}
<slot />
{@render children?.()}
</div>
</div>