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

28 lines
678 B
Vue

<script lang="ts" setup>
import { type HTMLAttributes, computed } from "vue";
import {
RangeCalendarHeader,
type RangeCalendarHeaderProps,
useForwardProps,
} from "radix-vue";
import { cn } from "@/lib/utils";
const props = defineProps<
RangeCalendarHeaderProps & { class?: HTMLAttributes["class"] }
>();
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props;
return delegated;
});
const forwardedProps = useForwardProps(delegatedProps);
</script>
<template>
<RangeCalendarHeader :class="cn('relative flex w-full items-center justify-between pt-1', props.class)" v-bind="forwardedProps">
<slot />
</RangeCalendarHeader>
</template>