Updated rank change page systems

This commit is contained in:
2025-09-15 10:38:50 -04:00
parent 3da4d33167
commit 456c29a731
4 changed files with 69 additions and 33 deletions

View File

@@ -0,0 +1,18 @@
<script setup>
import { cn } from "@/lib/utils";
const props = defineProps({
class: { type: null, required: false },
});
</script>
<template>
<span
data-slot="dropdown-menu-shortcut"
:class="
cn('text-muted-foreground ml-auto text-xs tracking-widest', props.class)
"
>
<slot />
</span>
</template>