shadcn-vue/packages/cli/test/fixtures/nuxt/components/ui/alert-dialog/AlertDialogDescription.vue
2023-09-19 00:30:11 +08:00

19 lines
424 B
Vue

<script setup lang="ts">
import {
AlertDialogDescription,
type AlertDialogDescriptionProps,
} from 'radix-vue'
import { cn } from '@/lib/utils'
const props = defineProps<AlertDialogDescriptionProps & { class?: string }>()
</script>
<template>
<AlertDialogDescription
:class="cn('text-muted-foreground text-sm', props.class)"
:as-child="props.asChild"
>
<slot />
</AlertDialogDescription>
</template>