mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-21 09:15:55 +03:00
9 lines
207 B
Svelte
9 lines
207 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { Dialog as DialogPrimitive } from "bits-ui";
|
||
|
|
type $$Props = DialogPrimitive.PortalProps;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<DialogPrimitive.Portal {...$$restProps}>
|
||
|
|
<slot />
|
||
|
|
</DialogPrimitive.Portal>
|