frontend/app/components/ui/dialog/DialogClose.vue

15 lines
266 B
Vue
Raw Normal View History

2024-11-30 19:15:23 +01:00
<script setup lang="ts">
import { DialogClose, type DialogCloseProps } from "reka-ui";
2024-11-30 19:15:23 +01:00
const props = defineProps<DialogCloseProps>();
</script>
<template>
<DialogClose
data-slot="dialog-close"
v-bind="props"
>
2024-11-30 19:15:23 +01:00
<slot />
</DialogClose>
</template>