mirror of
https://git.fightbot.fun/hxuanyu/BingPaper.git
synced 2026-03-07 18:19:33 +08:00
22 lines
593 B
Vue
22 lines
593 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
|
|
data-slot="alert-dialog-title"
|
|
v-bind="delegatedProps"
|
|
:class="cn('text-lg font-semibold', props.class)"
|
|
>
|
|
<slot />
|
|
</AlertDialogTitle>
|
|
</template>
|