frontend/components/ui/dropdown-menu/DropdownMenuSeparator.vue

29 lines
622 B
Vue
Raw Normal View History

<script setup lang="ts">
import {
DropdownMenuSeparator,
type DropdownMenuSeparatorProps,
} from "reka-ui";
2025-06-26 22:39:02 +02:00
import { computed, type HTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<
DropdownMenuSeparatorProps & {
class?: HTMLAttributes["class"];
}
>();
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props;
return delegated;
});
</script>
<template>
<DropdownMenuSeparator
data-slot="dropdown-menu-separator"
v-bind="delegatedProps"
:class="cn('bg-border -mx-1 my-1 h-px', props.class)"
/>
</template>