news-analyze/components/ui/command/CommandSeparator.vue
2025-05-10 22:05:10 +08:00

25 lines
554 B
Vue

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