mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 13:49:45 +08:00
9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
import { twMerge } from 'tailwind-merge'
|
|
import cn from 'classnames'
|
|
|
|
const classNames = (...cls: cn.ArgumentArray) => {
|
|
return twMerge(cn(cls))
|
|
}
|
|
|
|
export default classNames
|