mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
15 lines
294 B
Svelte
15 lines
294 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}
|
|
/>
|