mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-07 00:48:20 +01:00
24 lines
589 B
Vue
24 lines
589 B
Vue
<script setup lang="ts">
|
|
import { cn } from "@/lib/utils";
|
|
import { SelectSeparator, type SelectSeparatorProps } from "reka-ui";
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
|
|
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>
|