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

28 lines
671 B
Vue

<script lang="ts" setup>
import { type HTMLAttributes, computed } from "vue";
import {
CalendarHeadCell,
type CalendarHeadCellProps,
useForwardProps,
} from "radix-vue";
import { cn } from "@/lib/utils";
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>