mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-05-03 08:27:49 +00:00
8 lines
218 B
Svelte
8 lines
218 B
Svelte
<script lang="ts">
|
|
import { Dialog as SheetPrimitive } from "bits-ui";
|
|
|
|
let { open = $bindable(false), ...restProps }: SheetPrimitive.RootProps = $props();
|
|
</script>
|
|
|
|
<SheetPrimitive.Root bind:open {...restProps} />
|