<script setup lang="ts">
|
import type { SelectSeparatorProps } from 'radix-vue';
|
|
import { computed } from 'vue';
|
|
import { cn } from '@vben-core/shared/utils';
|
|
import { SelectSeparator } from 'radix-vue';
|
|
const props = defineProps<SelectSeparatorProps & { class?: any }>();
|
|
const delegatedProps = computed(() => {
|
const { class: _, ...delegated } = props;
|
|
return delegated;
|
});
|
</script>
|
|
<template>
|
<SelectSeparator
|
v-bind="delegatedProps"
|
:class="cn('bg-muted -mx-1 my-1 h-px', props.class)"
|
/>
|
</template>
|