additional shadcn components

This commit is contained in:
2026-02-09 22:30:48 -08:00
parent 4e680c6697
commit 9126e34f38
27 changed files with 485 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<script lang="ts">
import { Dialog as DialogPrimitive } from "bits-ui";
let { open = $bindable(false), ...restProps }: DialogPrimitive.RootProps = $props();
</script>
<DialogPrimitive.Root bind:open {...restProps} />