mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
23 lines
553 B
Vue
23 lines
553 B
Vue
<script lang="ts" setup>
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
import { type CalendarGridRowProps, useForwardProps } from "radix-vue";
|
|
|
|
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>
|