29 lines
780 B
Vue
29 lines
780 B
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { cn } from "@/lib/utils";
|
|
import { Separator } from '@/Components/ui/separator';
|
|
|
|
const props = defineProps({
|
|
orientation: { type: String, required: false, default: "vertical" },
|
|
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
|
|
data-slot="button-group-separator"
|
|
v-bind="delegatedProps"
|
|
:orientation="props.orientation"
|
|
:class="
|
|
cn(
|
|
'bg-input relative !m-0 self-stretch data-[orientation=vertical]:h-auto',
|
|
props.class,
|
|
)
|
|
"
|
|
/>
|
|
</template>
|