mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-05 01:42:54 +00:00
14 lines
342 B
Svelte
14 lines
342 B
Svelte
<script lang="ts">
|
|
import { Dialog as SheetPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
type $$Props = SheetPrimitive.PortalProps;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<SheetPrimitive.Portal class={cn(className)} {...$$restProps}>
|
|
<slot />
|
|
</SheetPrimitive.Portal>
|