21 lines
514 B
Vue
21 lines
514 B
Vue
<script setup>
|
|
import { cn } from "@/lib/utils";
|
|
import { Separator } from '@/Components/ui/separator';
|
|
|
|
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 },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Separator
|
|
data-slot="item-separator"
|
|
orientation="horizontal"
|
|
:class="cn('my-0', props.class)"
|
|
/>
|
|
</template>
|