32 lines
771 B
Vue
32 lines
771 B
Vue
<script lang="ts" setup>
|
|
import { cn } from '@/lib/utils'
|
|
import { CalendarHeading, type CalendarHeadingProps, useForwardProps } from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<CalendarHeadingProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
defineSlots<{
|
|
default: (props: { headingValue: string }) => any
|
|
}>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarHeading
|
|
v-slot="{ headingValue }"
|
|
:class="cn('text-sm font-medium', props.class)"
|
|
v-bind="forwardedProps"
|
|
>
|
|
<slot :heading-value>
|
|
{{ headingValue }}
|
|
</slot>
|
|
</CalendarHeading>
|
|
</template>
|