Files
Teren-app/resources/js/Components/ui/drawer/DrawerTitle.vue
T
2026-06-21 19:49:04 +02:00

25 lines
554 B
Vue

<script setup>
import { reactiveOmit } from "@vueuse/core";
import { DrawerTitle } from "vaul-vue";
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");
</script>
<template>
<DrawerTitle
v-bind="delegatedProps"
:class="
cn('text-lg font-semibold leading-none tracking-tight', props.class)
"
>
<slot />
</DrawerTitle>
</template>