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