frontend/components/ui/sheet/SheetClose.vue

12 lines
232 B
Vue
Raw Normal View History

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