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

23 lines
615 B
Vue

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