22 lines
571 B
Vue
22 lines
571 B
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { CalendarGridRow, useForwardProps } from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
class: { type: null, required: false },
|
|
});
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGridRow :class="cn('flex', props.class)" v-bind="forwardedProps">
|
|
<slot />
|
|
</CalendarGridRow>
|
|
</template>
|