Files
zeroone/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue
KM 6e4dc5e9db init
Initial mock up of the app
2024-01-22 12:03:56 +01:00

14 lines
212 B
Vue

<script setup>
import { cn } from "@/lib/utils";
</script>
<template>
<span
:class="
cn('ml-auto text-xs tracking-widest opacity-60', $attrs.class ?? '')
"
>
<slot />
</span>
</template>