16 lines
375 B
Vue
16 lines
375 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { CalendarGridHead, type CalendarGridHeadProps } from 'reka-ui'
|
|
|
|
const props = defineProps<CalendarGridHeadProps & { class?: HTMLAttributes['class'] }>()
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGridHead
|
|
data-slot="calendar-grid-head"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</CalendarGridHead>
|
|
</template>
|