mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
16 lines
294 B
Vue
16 lines
294 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>
|