mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-04-07 20:30:22 +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>
|