Files
better-auth/examples/nuxt-example/components/ui/calendar/CalendarHeading.vue
2024-09-27 13:36:20 +03:00

34 lines
714 B
Vue

<script lang="ts" setup>
import { type HTMLAttributes, computed } from "vue";
import {
CalendarHeading,
type CalendarHeadingProps,
useForwardProps,
} from "radix-vue";
import { cn } from "@/lib/utils";
const props = defineProps<
CalendarHeadingProps & { class?: HTMLAttributes["class"] }
>();
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>