mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-04-28 06:15:54 +00:00
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} />
|