mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 04:19:32 +00:00
29 lines
679 B
Vue
29 lines
679 B
Vue
<script lang="ts" setup>
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
import { type RangeCalendarHeadingProps, useForwardProps } from "radix-vue";
|
|
|
|
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>
|