1<script lang="ts">
2 import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui';
3
4 let {
5 ref = $bindable(null),
6 value = $bindable(),
7 ...restProps
8 }: DropdownMenuPrimitive.RadioGroupProps = $props();
9</script>
10
11<DropdownMenuPrimitive.RadioGroup
12 bind:ref
13 bind:value
14 data-slot="dropdown-menu-radio-group"
15 {...restProps}
16/>