21 lines
558 B
Vue
21 lines
558 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import type { AlertDialogTitleProps } from "reka-ui"
|
||
|
|
import type { HTMLAttributes } from "vue"
|
||
|
|
import { reactiveOmit } from "@vueuse/core"
|
||
|
|
import { AlertDialogTitle } from "reka-ui"
|
||
|
|
import { cn } from "@/lib/utils"
|
||
|
|
|
||
|
|
const props = defineProps<AlertDialogTitleProps & { class?: HTMLAttributes["class"] }>()
|
||
|
|
|
||
|
|
const delegatedProps = reactiveOmit(props, "class")
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<AlertDialogTitle
|
||
|
|
v-bind="delegatedProps"
|
||
|
|
:class="cn('text-lg font-semibold', props.class)"
|
||
|
|
>
|
||
|
|
<slot />
|
||
|
|
</AlertDialogTitle>
|
||
|
|
</template>
|