version 1.0

This commit is contained in:
Lukas Werner
2025-06-25 18:58:43 -07:00
parent fa543bab08
commit 4cd69217cc
28 changed files with 1349 additions and 3 deletions
@@ -0,0 +1,15 @@
<script lang="ts">
import type { HTMLAttributes } from "svelte/elements";
import { cn, type WithElementRef } from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
</script>
<div bind:this={ref} data-slot="card-content" class={cn("px-6", className)} {...restProps}>
{@render children?.()}
</div>