RobotFrontend / src /lib /components /ui /dialog /dialog-close.svelte
blanchon's picture
Initial commit
ebcc4b8
raw
history blame contribute delete
245 Bytes
<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} />