mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
15 lines
323 B
Vue
15 lines
323 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from "vue";
|
|
import { type CalendarGridHeadProps } from "radix-vue";
|
|
|
|
const props = defineProps<
|
|
CalendarGridHeadProps & { class?: HTMLAttributes["class"] }
|
|
>();
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGridHead v-bind="props">
|
|
<slot />
|
|
</CalendarGridHead>
|
|
</template>
|