mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
16 lines
291 B
Vue
16 lines
291 B
Vue
<script lang="ts" setup>
|
|
import type { DrawerCloseProps } from 'vaul-vue'
|
|
import { DrawerClose } from 'vaul-vue'
|
|
|
|
const props = defineProps<DrawerCloseProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<DrawerClose
|
|
data-slot="drawer-close"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</DrawerClose>
|
|
</template>
|