webui-ng/src/lib/components/ui/CardContainer.svelte
Djuri Baars 98ad7d1432
Some checks failed
/ build (push) Failing after 1m26s
/ check-changes (push) Successful in 8s
feat: Most settings implemented
2025-05-04 02:12:17 +02:00

12 lines
303 B
Svelte

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