mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
15 lines
326 B
Vue
15 lines
326 B
Vue
<script lang="ts" setup>
|
|
import { RangeCalendarGridBody, type RangeCalendarGridBodyProps } from 'reka-ui'
|
|
|
|
const props = defineProps<RangeCalendarGridBodyProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<RangeCalendarGridBody
|
|
data-slot="range-calendar-grid-body"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</RangeCalendarGridBody>
|
|
</template>
|