blob: f39b867a694bc3608303a289f4a66db0911f4244 (
plain)
1
2
3
4
5
6
7
|
<script lang="ts">
import { Popover as PopoverPrimitive } from 'bits-ui';
let { open = $bindable(false), ...restProps }: PopoverPrimitive.RootProps = $props();
</script>
<PopoverPrimitive.Root bind:open {...restProps} />
|