mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-11 04:19:31 +00:00
28 lines
726 B
Vue
28 lines
726 B
Vue
<script lang="ts" setup>
|
|
import { type HTMLAttributes, computed } from 'vue'
|
|
import { RangeCalendarHeading, type RangeCalendarHeadingProps, useForwardProps } from 'radix-vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<RangeCalendarHeadingProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<RangeCalendarHeading
|
|
v-slot="{ headingValue }"
|
|
:class="cn('text-sm font-medium', props.class)"
|
|
v-bind="forwardedProps"
|
|
>
|
|
<slot :heading-value>
|
|
{{ headingValue }}
|
|
</slot>
|
|
</RangeCalendarHeading>
|
|
</template>
|