frontend/components/ui/command/CommandSeparator.vue
2025-04-10 13:55:56 +02:00

27 lines
594 B
Vue

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