fix: build error

This commit is contained in:
tao.chen
2026-08-25 17:06:57 +08:00
parent 3c79cd3a93
commit 4557fae037
2 changed files with 25 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}