File size: 277 Bytes
31d3580
95e3d2a
31d3580
 
 
 
 
 
 
 
 
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} />