mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-07-17 01:07:56 +00:00
18 lines
347 B
Vue
18 lines
347 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
|
|
import { cn } from '@comfyorg/tailwind-utils'
|
|
|
|
const { class: className } = defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<span
|
|
:class="cn('font-mono text-xs font-medium text-base-foreground', className)"
|
|
>
|
|
<slot />
|
|
</span>
|
|
</template>
|