frontend/app/components/ui/select/SelectSeparator.vue

24 lines
589 B
Vue
Raw Normal View History

<script setup lang="ts">
import { SelectSeparator, type SelectSeparatorProps } from "reka-ui";
2025-06-26 22:39:02 +02:00
import { computed, type HTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<
SelectSeparatorProps & { class?: HTMLAttributes["class"] }
>();
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props;
return delegated;
});
</script>
<template>
<SelectSeparator
data-slot="select-separator"
v-bind="delegatedProps"
:class="cn('bg-border pointer-events-none -mx-1 my-1 h-px', props.class)"
/>
</template>