Teren-app/resources/js/Components/ui/command/CommandShortcut.vue
2025-11-20 18:11:43 +01:00

18 lines
291 B
Vue

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