Files
leim-tools/components/ui/dialog/DialogTitle.vue
2025-04-18 17:44:21 +02:00

25 lines
632 B
Vue

<script setup lang="ts">
import { type HTMLAttributes, computed } from "vue"
import { DialogTitle, type DialogTitleProps, useForwardProps } from "radix-vue"
import { cn } from "~/lib/utils"
const props = defineProps<DialogTitleProps & { class?: HTMLAttributes["class"] }>()
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props
return delegated
})
const forwardedProps = useForwardProps(delegatedProps)
</script>
<template>
<DialogTitle
v-bind="forwardedProps"
:class="cn('text-2xl font-semibold leading-none tracking-tight', props.class)"
>
<slot />
</DialogTitle>
</template>