Files
better-auth/examples/nuxt-example/components/ui/range-calendar/RangeCalendarHeader.vue
Bereket Engida 9f2e45b8c7 chore: cleanup
2025-01-06 14:30:39 +03:00

23 lines
619 B
Vue

<script lang="ts" setup>
import { type HTMLAttributes, computed } from "vue";
import { type RangeCalendarHeaderProps, useForwardProps } from "radix-vue";
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>