<script lang="ts" setup>
|
import type { AlertDialogDescriptionProps } from 'radix-vue';
|
|
import { computed } from 'vue';
|
|
import { cn } from '@vben-core/shared/utils';
|
|
import { AlertDialogDescription, useForwardProps } from 'radix-vue';
|
|
const props = defineProps<AlertDialogDescriptionProps & { class?: any }>();
|
|
const delegatedProps = computed(() => {
|
const { class: _, ...delegated } = props;
|
|
return delegated;
|
});
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
</script>
|
|
<template>
|
<AlertDialogDescription
|
v-bind="forwardedProps"
|
:class="cn('text-muted-foreground text-sm', props.class)"
|
>
|
<slot></slot>
|
</AlertDialogDescription>
|
</template>
|