mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-04-25 12:55:55 +00:00
12 lines
277 B
Svelte
12 lines
277 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import { Select as SelectPrimitive } from "bits-ui";
|
||
|
|
|
||
|
|
let {
|
||
|
|
open = $bindable(false),
|
||
|
|
value = $bindable(),
|
||
|
|
...restProps
|
||
|
|
}: SelectPrimitive.RootProps = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<SelectPrimitive.Root bind:open bind:value={value as never} {...restProps} />
|