mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
9 lines
247 B
Svelte
9 lines
247 B
Svelte
<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} />
|