7 lines
276 B
Svelte
7 lines
276 B
Svelte
<script lang="ts">
|
|
import { Collapsible as CollapsiblePrimitive } from "bits-ui";
|
|
|
|
let { ref = $bindable(null), ...restProps }: CollapsiblePrimitive.ContentProps = $props();
|
|
</script>
|
|
|
|
<CollapsiblePrimitive.Content bind:ref data-slot="collapsible-content" {...restProps} />
|