mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-06 13:21:53 +00:00
17 lines
312 B
Svelte
17 lines
312 B
Svelte
<script lang="ts">
|
|
import { Accordion as AccordionPrimitive } from "bits-ui";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
value = $bindable(),
|
|
...restProps
|
|
}: AccordionPrimitive.RootProps = $props();
|
|
</script>
|
|
|
|
<AccordionPrimitive.Root
|
|
bind:ref
|
|
bind:value={value as never}
|
|
data-slot="accordion"
|
|
{...restProps}
|
|
/>
|