Files
amqtrain/src/lib/components/ui/drawer/drawer-portal.svelte

8 lines
194 B
Svelte

<script lang="ts">
import { Drawer as DrawerPrimitive } from "vaul-svelte";
let { ...restProps }: DrawerPrimitive.PortalProps = $props();
</script>
<DrawerPrimitive.Portal {...restProps} />