mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-21 15:24:09 +00:00
13 lines
340 B
Vue
13 lines
340 B
Vue
<template>
|
|
<header class="flex items-center justify-between h-16 px-6">
|
|
<div class="flex items-center gap-2 pl-1">
|
|
<slot name="icon">
|
|
<i-lucide:puzzle class="text-neutral text-base" />
|
|
</slot>
|
|
<h2 class="font-bold text-base text-neutral">
|
|
<slot></slot>
|
|
</h2>
|
|
</div>
|
|
</header>
|
|
</template>
|