Co-authored-by: terraputix <terraputix@mailbox.org> Reviewed-on: useweb/ombrella#6
8 lines
225 B
Svelte
8 lines
225 B
Svelte
<script lang="ts">
|
|
import { Popover as PopoverPrimitive } from 'bits-ui';
|
|
|
|
let { open = $bindable(false), ...restProps }: PopoverPrimitive.RootProps = $props();
|
|
</script>
|
|
|
|
<PopoverPrimitive.Root bind:open {...restProps} />
|