Files
gpx.studio/website/src/lib/components/ui/select/select.svelte
2026-04-06 18:22:01 +02:00

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} />