Files
better-auth/examples/nuxt-example/components/ui/calendar/CalendarGridRow.vue
Bereket Engida 9f2e45b8c7 chore: cleanup
2025-01-06 14:30:39 +03:00

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>