Files
sexy/packages/frontend/src/lib/components/ui/popover/popover.svelte

8 lines
225 B
Svelte
Raw Normal View History

<script lang="ts">
import { Popover as PopoverPrimitive } from "bits-ui";
let { open = $bindable(false), ...restProps }: PopoverPrimitive.RootProps = $props();
</script>
<PopoverPrimitive.Root bind:open {...restProps} />