generated from hxuanyu/vue-vite-shadcn-template
19 lines
601 B
Vue
19 lines
601 B
Vue
<script setup lang="ts">
|
|
import type { AlertDialogActionProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { reactiveOmit } from "@vueuse/core"
|
|
import { AlertDialogAction } from "reka-ui"
|
|
import { cn } from "@/lib/utils"
|
|
import { buttonVariants } from '@/components/ui/button'
|
|
|
|
const props = defineProps<AlertDialogActionProps & { class?: HTMLAttributes["class"] }>()
|
|
|
|
const delegatedProps = reactiveOmit(props, "class")
|
|
</script>
|
|
|
|
<template>
|
|
<AlertDialogAction v-bind="delegatedProps" :class="cn(buttonVariants(), props.class)">
|
|
<slot />
|
|
</AlertDialogAction>
|
|
</template>
|