mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-03 13:18:56 +00:00
17 lines
346 B
Svelte
17 lines
346 B
Svelte
<script lang="ts">
|
|
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
value = $bindable([]),
|
|
...restProps
|
|
}: DropdownMenuPrimitive.CheckboxGroupProps = $props();
|
|
</script>
|
|
|
|
<DropdownMenuPrimitive.CheckboxGroup
|
|
bind:ref
|
|
bind:value
|
|
data-slot="dropdown-menu-checkbox-group"
|
|
{...restProps}
|
|
/>
|