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