shadcn-vue/apps/www/registry/default/ui/sheet/SheetClose.vue
2024-11-21 11:52:31 +08:00

12 lines
228 B
Vue

<script setup lang="ts">
import { DialogClose, type DialogCloseProps } from 'reka-ui'
const props = defineProps<DialogCloseProps>()
</script>
<template>
<DialogClose v-bind="props">
<slot />
</DialogClose>
</template>