14 lines
212 B
Vue
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>
|