mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-10 17:22:15 +01:00
24 lines
667 B
Vue
24 lines
667 B
Vue
<script lang="ts" setup>
|
|
import { cn } from '@/lib/utils';
|
|
import { RangeCalendarGrid, type RangeCalendarGridProps, useForwardProps } from 'reka-ui';
|
|
import { computed, type HTMLAttributes } from 'vue';
|
|
|
|
const props = defineProps<RangeCalendarGridProps & { class?: HTMLAttributes['class'] }>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
|
</script>
|
|
|
|
<template>
|
|
<RangeCalendarGrid
|
|
:class="cn('w-full border-collapse space-y-1', props.class)"
|
|
v-bind="forwardedProps">
|
|
<slot />
|
|
</RangeCalendarGrid>
|
|
</template>
|