mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-24 17:23:50 +02:00
25 lines
743 B
Vue
25 lines
743 B
Vue
<script setup>
|
|
import { RangeCalendarHeader, useForwardProps } from 'reka-ui';
|
|
import { cn } from '@/lib/utils';
|
|
import { reactiveOmit } from '@vueuse/core';
|
|
|
|
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>
|
|
<RangeCalendarHeader
|
|
data-slot="range-calendar-header"
|
|
:class="cn('flex justify-center pt-1 relative items-center w-full', props.class)"
|
|
v-bind="forwardedProps">
|
|
<slot />
|
|
</RangeCalendarHeader>
|
|
</template>
|