25 lines
606 B
Vue
25 lines
606 B
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { Separator } from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
orientation: { type: String, required: false },
|
|
decorative: { type: Boolean, required: false },
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
class: { type: null, required: false },
|
|
});
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
</script>
|
|
|
|
<template>
|
|
<Separator
|
|
v-bind="delegatedProps"
|
|
:class="cn('-mx-1 h-px bg-border', props.class)"
|
|
>
|
|
<slot />
|
|
</Separator>
|
|
</template>
|