27 lines
627 B
Vue
27 lines
627 B
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { DialogTitle, useForwardProps } from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
class: { type: null, required: false },
|
|
});
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
|
</script>
|
|
|
|
<template>
|
|
<DialogTitle
|
|
v-bind="forwardedProps"
|
|
:class="
|
|
cn('text-lg font-semibold leading-none tracking-tight', props.class)
|
|
"
|
|
>
|
|
<slot />
|
|
</DialogTitle>
|
|
</template>
|