8 lines
194 B
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} />
|