18 lines
291 B
Vue
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>
|