mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-16 04:56:12 +00:00
10 lines
233 B
Svelte
10 lines
233 B
Svelte
<script lang="ts">
|
|
import { AlertDialog as AlertDialogPrimitive } from 'bits-ui';
|
|
|
|
type $$Props = AlertDialogPrimitive.PortalProps;
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Portal {...$$restProps}>
|
|
<slot />
|
|
</AlertDialogPrimitive.Portal>
|