mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 04:19:32 +00:00
12 lines
259 B
Vue
12 lines
259 B
Vue
<script lang="ts" setup>
|
|
import { type RangeCalendarGridBodyProps } from "radix-vue";
|
|
|
|
const props = defineProps<RangeCalendarGridBodyProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<RangeCalendarGridBody v-bind="props">
|
|
<slot />
|
|
</RangeCalendarGridBody>
|
|
</template>
|