24 lines
690 B
Vue
24 lines
690 B
Vue
|
|
<script lang="ts" setup>
|
||
|
|
import type { CalendarHeaderProps } from "reka-ui"
|
||
|
|
import type { HTMLAttributes } from "vue"
|
||
|
|
import { reactiveOmit } from "@vueuse/core"
|
||
|
|
import { CalendarHeader, useForwardProps } from "reka-ui"
|
||
|
|
import { cn } from "@/lib/utils"
|
||
|
|
|
||
|
|
const props = defineProps<CalendarHeaderProps & { class?: HTMLAttributes["class"] }>()
|
||
|
|
|
||
|
|
const delegatedProps = reactiveOmit(props, "class")
|
||
|
|
|
||
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<CalendarHeader
|
||
|
|
data-slot="calendar-header"
|
||
|
|
:class="cn('flex justify-center pt-1 relative items-center w-full px-8', props.class)"
|
||
|
|
v-bind="forwardedProps"
|
||
|
|
>
|
||
|
|
<slot />
|
||
|
|
</CalendarHeader>
|
||
|
|
</template>
|