mirror of
https://github.com/langgenius/dify.git
synced 2025-12-30 04:01:14 -05:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
import type { ClassValue } from 'clsx'
|
|
import { clsx } from 'clsx'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|