19 lines
573 B
Vue
19 lines
573 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import { Primitive, type PrimitiveProps, useForwardProps } from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
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>
|