7 lines
249 B
Svelte
7 lines
249 B
Svelte
<script lang="ts">
|
|
import { Drawer as DrawerPrimitive } from "vaul-svelte";
|
|
|
|
let { ref = $bindable(null), ...restProps }: DrawerPrimitive.CloseProps = $props();
|
|
</script>
|
|
|
|
<DrawerPrimitive.Close bind:ref data-slot="drawer-close" {...restProps} />
|