blob: b0180c0c194cfa7f47d21bd741ca7237423b1650 (
plain)
1
2
3
4
5
6
7
|
<script lang="ts">
import { Dialog as SheetPrimitive } from 'bits-ui';
let { ref = $bindable(null), ...restProps }: SheetPrimitive.CloseProps = $props();
</script>
<SheetPrimitive.Close bind:ref data-slot="sheet-close" {...restProps} />
|