fix: type check

fix: ci

fix: ci

fix: ci
This commit is contained in:
vben
2024-06-16 21:17:39 +08:00
parent 0085429ef4
commit 54b35deeab
135 changed files with 393 additions and 318 deletions

View File

@@ -0,0 +1,8 @@
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export { cn };

View File

@@ -1,3 +1,4 @@
export * from './cn';
export * from './color';
export * from './diff';
export * from './hash';