mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-07-03 05:38:26 +00:00
16 lines
311 B
Vue
16 lines
311 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>
|
|
<div :class="cn('flex items-center gap-1', className)">
|
|
<slot />
|
|
</div>
|
|
</template>
|