mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-14 12:23:52 +02:00
26 lines
833 B
Vue
26 lines
833 B
Vue
<script setup>
|
|
import { DropdownMenuLabel, 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 },
|
|
inset: { type: Boolean, required: false }
|
|
});
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class', 'inset');
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuLabel
|
|
data-slot="dropdown-menu-label"
|
|
:data-inset="inset ? '' : undefined"
|
|
v-bind="forwardedProps"
|
|
:class="cn('px-2 py-1.5 text-sm font-medium data-inset:pl-8', props.class)">
|
|
<slot />
|
|
</DropdownMenuLabel>
|
|
</template>
|