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