mirror of
https://github.com/versia-pub/frontend.git
synced 2026-06-14 15:39:15 +02:00
12 lines
291 B
Vue
12 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>
|