mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
21 lines
558 B
Vue
21 lines
558 B
Vue
<script lang="ts" setup>
|
|
import { cn } from "@/lib/utils";
|
|
import type { DialogOverlayProps } from "reka-ui";
|
|
import { DrawerOverlay } from "vaul-vue";
|
|
import { type HtmlHTMLAttributes, computed } from "vue";
|
|
|
|
const props = defineProps<
|
|
DialogOverlayProps & { class?: HtmlHTMLAttributes["class"] }
|
|
>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<DrawerOverlay v-bind="delegatedProps" :class="cn('fixed inset-0 z-50 bg-black/80', props.class)" />
|
|
</template>
|