mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
20 lines
673 B
Vue
20 lines
673 B
Vue
<script lang="ts" setup>
|
|
import type { DialogOverlayProps } from 'reka-ui'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import { DrawerOverlay } from 'vaul-vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<DialogOverlayProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class')
|
|
</script>
|
|
|
|
<template>
|
|
<DrawerOverlay
|
|
data-slot="drawer-overlay"
|
|
v-bind="delegatedProps"
|
|
:class="cn('data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80', props.class)"
|
|
/>
|
|
</template>
|