26 lines
687 B
Vue
26 lines
687 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import { RadioGroupRoot, type RadioGroupRootEmits, type RadioGroupRootProps, useForwardPropsEmits } from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<RadioGroupRootProps & { class?: HTMLAttributes['class'] }>()
|
|
const emits = defineEmits<RadioGroupRootEmits>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<RadioGroupRoot
|
|
:class="cn('grid gap-2', props.class)"
|
|
v-bind="forwarded"
|
|
>
|
|
<slot />
|
|
</RadioGroupRoot>
|
|
</template>
|