mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
24 lines
611 B
Vue
24 lines
611 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import { DialogDescription, type DialogDescriptionProps } from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<DialogDescriptionProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<DialogDescription
|
|
data-slot="sheet-description"
|
|
:class="cn('text-gray-500 text-sm dark:text-gray-400', props.class)"
|
|
v-bind="delegatedProps"
|
|
>
|
|
<slot />
|
|
</DialogDescription>
|
|
</template>
|