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

26 lines
646 B
Vue

<script lang="ts" setup>
import { type HTMLAttributes, computed } from "vue";
import { type RangeCalendarHeadCellProps, useForwardProps } from "radix-vue";
const props = defineProps<
RangeCalendarHeadCellProps & { class?: HTMLAttributes["class"] }
>();
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props;
return delegated;
});
const forwardedProps = useForwardProps(delegatedProps);
</script>
<template>
<RangeCalendarHeadCell
:class="cn('w-8 rounded-md text-[0.8rem] font-normal text-muted-foreground', props.class)"
v-bind="forwardedProps"
>
<slot />
</RangeCalendarHeadCell>
</template>