shadcn-vue/apps/www/registry/default/ui/calendar/CalendarGridHead.vue
2024-11-21 11:52:31 +08:00

12 lines
253 B
Vue

<script lang="ts" setup>
import { CalendarGridHead, type CalendarGridHeadProps } from 'reka-ui'
const props = defineProps<CalendarGridHeadProps>()
</script>
<template>
<CalendarGridHead v-bind="props">
<slot />
</CalendarGridHead>
</template>