24 lines
716 B
Vue
24 lines
716 B
Vue
|
|
<script lang="ts" setup>
|
||
|
|
import type { RangeCalendarHeaderProps } from "reka-ui"
|
||
|
|
import type { HTMLAttributes } from "vue"
|
||
|
|
import { reactiveOmit } from "@vueuse/core"
|
||
|
|
import { RangeCalendarHeader, useForwardProps } from "reka-ui"
|
||
|
|
import { cn } from "@/lib/utils"
|
||
|
|
|
||
|
|
const props = defineProps<RangeCalendarHeaderProps & { class?: HTMLAttributes["class"] }>()
|
||
|
|
|
||
|
|
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>
|