1<script lang="ts">
 2	import { Collapsible as CollapsiblePrimitive } from 'bits-ui';
 3
 4	let {
 5		ref = $bindable(null),
 6		open = $bindable(false),
 7		...restProps
 8	}: CollapsiblePrimitive.RootProps = $props();
 9</script>
10
11<CollapsiblePrimitive.Root bind:ref bind:open data-slot="collapsible" {...restProps} />