mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-03 18:21:20 +00:00
9 lines
208 B
Svelte
9 lines
208 B
Svelte
<script lang="ts">
|
|
import { Dialog as DialogPrimitive } from "bits-ui";
|
|
|
|
type $$Props = DialogPrimitive.PortalProps;
|
|
</script>
|
|
|
|
<DialogPrimitive.Portal {...$$restProps}>
|
|
<slot />
|
|
</DialogPrimitive.Portal>
|