14 lines
427 B
Vue
14 lines
427 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
import { MenubarLabel, type MenubarLabelProps } from 'reka-ui'
|
|
|
|
const props = defineProps<MenubarLabelProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
|
|
</script>
|
|
|
|
<template>
|
|
<MenubarLabel :class="cn('px-2 py-1.5 text-sm font-semibold', inset && 'pl-8', props.class)">
|
|
<slot />
|
|
</MenubarLabel>
|
|
</template>
|