公告板
版本库
filestore
活动
搜索
登录
jnpf6
/
jnpf-web-monorepo-npm
jnpf6前端
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
初始化
ny
昨天
282fbc6488f4e8ceb5fda759f963ee88fbf7b999
[jnpf6/jnpf-web-monorepo-npm.git]
/
packages
/
@core
/
base
/
shared
/
src
/
utils
/
cn.ts
1
2
3
4
5
6
7
8
9
10
import type { ClassValue } from 'clsx';
import { clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export { cn };