14 lines
437 B
Vue
14 lines
437 B
Vue
<script setup lang="ts">
|
|
import { AlertDialogCancel, type AlertDialogCancelProps } from 'radix-vue'
|
|
import { cn } from '@/lib/utils'
|
|
import { buttonVariants } from '@/components/ui/button'
|
|
|
|
const props = defineProps<AlertDialogCancelProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<AlertDialogCancel v-bind="props" :class="cn(buttonVariants({ variant: 'outline' }), 'mt-2 sm:mt-0', $attrs.class ?? '')">
|
|
<slot />
|
|
</AlertDialogCancel>
|
|
</template>
|