mirror of
https://git.fightbot.fun/hxuanyu/FileRelay.git
synced 2026-02-15 06:01:43 +08:00
24 lines
710 B
Vue
24 lines
710 B
Vue
<script lang="ts" setup>
|
|
import type { CalendarHeadCellProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { reactiveOmit } from "@vueuse/core"
|
|
import { CalendarHeadCell, useForwardProps } from "reka-ui"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const props = defineProps<CalendarHeadCellProps & { class?: HTMLAttributes["class"] }>()
|
|
|
|
const delegatedProps = reactiveOmit(props, "class")
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarHeadCell
|
|
data-slot="calendar-head-cell"
|
|
:class="cn('text-muted-foreground rounded-md flex-1 font-normal text-[0.8rem]', props.class)"
|
|
v-bind="forwardedProps"
|
|
>
|
|
<slot />
|
|
</CalendarHeadCell>
|
|
</template>
|