mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 05:43:51 +02:00
21 lines
601 B
Vue
21 lines
601 B
Vue
<script setup>
|
|
import { DropdownMenuSeparator } 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');
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuSeparator
|
|
data-slot="dropdown-menu-separator"
|
|
v-bind="delegatedProps"
|
|
:class="cn('bg-border -mx-1 my-1 h-px', props.class)" />
|
|
</template>
|