dropdown-menu-checkbox-group.svelte 346 B

12345678910111213141516
  1. <script lang="ts">
  2. import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
  3. let {
  4. ref = $bindable(null),
  5. value = $bindable([]),
  6. ...restProps
  7. }: DropdownMenuPrimitive.CheckboxGroupProps = $props();
  8. </script>
  9. <DropdownMenuPrimitive.CheckboxGroup
  10. bind:ref
  11. bind:value
  12. data-slot="dropdown-menu-checkbox-group"
  13. {...restProps}
  14. />