mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
23 lines
598 B
Vue
23 lines
598 B
Vue
|
|
<script lang="ts" setup>
|
||
|
|
import { cn } from "@/lib/utils";
|
||
|
|
import type { DrawerTitleProps } from "vaul-vue";
|
||
|
|
import { DrawerTitle } from "vaul-vue";
|
||
|
|
import { type HtmlHTMLAttributes, computed } from "vue";
|
||
|
|
|
||
|
|
const props = defineProps<
|
||
|
|
DrawerTitleProps & { class?: HtmlHTMLAttributes["class"] }
|
||
|
|
>();
|
||
|
|
|
||
|
|
const delegatedProps = computed(() => {
|
||
|
|
const { class: _, ...delegated } = props;
|
||
|
|
|
||
|
|
return delegated;
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<DrawerTitle v-bind="delegatedProps" :class="cn('text-lg font-semibold leading-none tracking-tight', props.class)">
|
||
|
|
<slot />
|
||
|
|
</DrawerTitle>
|
||
|
|
</template>
|