shadcn-vue/apps/www/registry/new-york/ui/range-calendar/RangeCalendarGridBody.vue
2024-11-21 11:52:31 +08:00

12 lines
278 B
Vue

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