25 lines
617 B
Vue
25 lines
617 B
Vue
<script lang="ts" setup>
|
|
import { cn } from '@/lib/utils'
|
|
import { CalendarGrid, type CalendarGridProps, useForwardProps } from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<CalendarGridProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGrid
|
|
:class="cn('w-full border-collapse space-y-1', props.class)"
|
|
v-bind="forwardedProps"
|
|
>
|
|
<slot />
|
|
</CalendarGrid>
|
|
</template>
|