mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-14 19:22:14 +01:00
24 lines
668 B
Vue
24 lines
668 B
Vue
<script setup lang="ts">
|
|
import type { ContextMenuLabelProps } from 'reka-ui';
|
|
import type { HTMLAttributes } from 'vue';
|
|
import { reactiveOmit } from '@vueuse/core';
|
|
import { ContextMenuLabel } from 'reka-ui';
|
|
import { cn } from '../utils/cn';
|
|
|
|
const props = defineProps<
|
|
ContextMenuLabelProps & { class?: HTMLAttributes['class']; inset?: boolean }
|
|
>();
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class');
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuLabel
|
|
v-bind="delegatedProps"
|
|
:class="
|
|
cn('px-2 py-1.5 text-sm font-semibold text-foreground', inset && 'pl-8', props.class)
|
|
">
|
|
<slot />
|
|
</ContextMenuLabel>
|
|
</template>
|