mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-04 23:20:07 +00:00
* refactor: v3 ui slots connection dots * fix: use the new useTemplateRef * fix: slot dark-theme border and hover styles --------- Co-authored-by: Christian Byrne <cbyrne@comfy.org>
9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
import clsx, { type ClassArray } from 'clsx'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
export type { ClassValue, ClassArray, ClassDictionary } from 'clsx'
|
|
|
|
export function cn(...inputs: ClassArray) {
|
|
return twMerge(clsx(inputs))
|
|
}
|