mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
27 lines
594 B
Vue
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>
|