21 lines
623 B
Vue
21 lines
623 B
Vue
<script setup lang="ts">
|
|
import type { PrimitiveProps } from 'radix-vue'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { Primitive, useForwardProps } from 'radix-vue'
|
|
import { computed } from 'vue'
|
|
import { cn } from '~/lib/utils'
|
|
|
|
const props = defineProps<PrimitiveProps & { class?: HTMLAttributes['class'] }>()
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
return delegated
|
|
})
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive v-bind="forwardedProps" :class="cn('flex items-center', props.class)">
|
|
<slot />
|
|
</primitive>
|
|
</template>
|