27 lines
667 B
Vue
27 lines
667 B
Vue
<script setup lang="ts">
|
|
import type { DialogDescriptionProps } from 'radix-vue'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { DialogDescription, useForwardProps } from 'radix-vue'
|
|
import { computed } from 'vue'
|
|
import { cn } from '~/lib/utils'
|
|
|
|
const props = defineProps<DialogDescriptionProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<DialogDescription
|
|
v-bind="forwardedProps"
|
|
:class="cn('text-sm', props.class)"
|
|
>
|
|
<slot />
|
|
</DialogDescription>
|
|
</template>
|