mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-29 11:43:48 +02:00
22 lines
542 B
Vue
22 lines
542 B
Vue
<script setup>
|
|
import { MoreHorizontal } from 'lucide-vue-next';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<span
|
|
data-slot="breadcrumb-ellipsis"
|
|
role="presentation"
|
|
aria-hidden="true"
|
|
:class="cn('flex size-9 items-center justify-center', props.class)">
|
|
<slot>
|
|
<MoreHorizontal class="size-4" />
|
|
</slot>
|
|
<span class="sr-only">More</span>
|
|
</span>
|
|
</template>
|