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