mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 04:19:25 +00:00
22 lines
595 B
Vue
22 lines
595 B
Vue
<script lang="ts" setup>
|
|
import { type HTMLAttributes, computed } from 'vue'
|
|
import { CalendarGridRow, type CalendarGridRowProps, useForwardProps } from 'radix-vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<CalendarGridRowProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGridRow :class="cn('flex', props.class)" v-bind="forwardedProps">
|
|
<slot />
|
|
</CalendarGridRow>
|
|
</template>
|