add range calendar component

This commit is contained in:
pa
2026-02-12 12:12:01 +09:00
parent 77f1795697
commit d423406a28
14 changed files with 412 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
<script setup>
import { RangeCalendarHeader, useForwardProps } from 'reka-ui';
import { cn } from '@/lib/utils';
import { reactiveOmit } from '@vueuse/core';
const props = defineProps({
asChild: { type: Boolean, required: false },
as: { type: null, required: false },
class: { type: null, required: false }
});
const delegatedProps = reactiveOmit(props, 'class');
const forwardedProps = useForwardProps(delegatedProps);
</script>
<template>
<RangeCalendarHeader
data-slot="range-calendar-header"
:class="cn('flex justify-center pt-1 relative items-center w-full', props.class)"
v-bind="forwardedProps">
<slot />
</RangeCalendarHeader>
</template>