shadcn-vue/apps/www/registry/new-york/ui/context-menu/ContextMenuSeparator.vue
2024-11-21 11:52:31 +08:00

21 lines
534 B
Vue

<script setup lang="ts">
import { cn } from '@/lib/utils'
import {
ContextMenuSeparator,
type ContextMenuSeparatorProps,
} from 'reka-ui'
import { computed, type HTMLAttributes } from 'vue'
const props = defineProps<ContextMenuSeparatorProps & { class?: HTMLAttributes['class'] }>()
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props
return delegated
})
</script>
<template>
<ContextMenuSeparator v-bind="delegatedProps" :class="cn('-mx-1 my-1 h-px bg-border', props.class)" />
</template>