Spaces:
Running
Running
File size: 277 Bytes
12a05ec 0eac98b 12a05ec | 1 2 3 4 5 6 7 8 9 10 11 12 | <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} />
|