9 lines
244 B
Svelte
9 lines
244 B
Svelte
<script lang="ts">
|
|
import { Dialog as DialogPrimitive } from "bits-ui";
|
|
|
|
let { ref = $bindable(null), ...restProps }: DialogPrimitive.CloseProps =
|
|
$props();
|
|
</script>
|
|
|
|
<DialogPrimitive.Close bind:ref data-slot="dialog-close" {...restProps} />
|