add shadcn components for use in HabitGrid

This commit is contained in:
hiperman
2026-02-25 01:22:45 -05:00
parent 3b9c179643
commit ad3690a07e
142 changed files with 3493 additions and 0 deletions
@@ -0,0 +1,11 @@
<script lang="ts">
import { Collapsible as CollapsiblePrimitive } from "bits-ui";
let {
ref = $bindable(null),
open = $bindable(false),
...restProps
}: CollapsiblePrimitive.RootProps = $props();
</script>
<CollapsiblePrimitive.Root bind:ref bind:open data-slot="collapsible" {...restProps} />