Sink/components/ui/range-calendar/RangeCalendarGridHead.vue
2024-05-25 08:09:30 +08:00

11 lines
280 B
Vue

<script lang="ts" setup>
import { RangeCalendarGridHead, type RangeCalendarGridHeadProps } from 'radix-vue'
const props = defineProps<RangeCalendarGridHeadProps>()
</script>
<template>
<RangeCalendarGridHead v-bind="props">
<slot />
</RangeCalendarGridHead>
</template>