23 lines
554 B
Vue
23 lines
554 B
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { AlertDialogDescription } from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
class: { type: null, required: false },
|
|
});
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
</script>
|
|
|
|
<template>
|
|
<AlertDialogDescription
|
|
v-bind="delegatedProps"
|
|
:class="cn('text-sm text-muted-foreground', props.class)"
|
|
>
|
|
<slot />
|
|
</AlertDialogDescription>
|
|
</template>
|