mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 12:26:02 +01:00
13 lines
290 B
Vue
13 lines
290 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>
|