8 lines
194 B
Svelte
8 lines
194 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { Popover as PopoverPrimitive } from "bits-ui";
|
||
|
|
|
||
|
|
let { ...restProps }: PopoverPrimitive.PortalProps = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<PopoverPrimitive.Portal {...restProps} />
|