chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { clsx, type ClassValue } from "clsx";
import { extendTailwindMerge } from "tailwind-merge";
const customTwMerge = extendTailwindMerge({
extend: {
classGroups: {
// Custom font sizes defined in tailwind.css (--text-xxs, --text-2sm)
"font-size": [{ text: ["xxs", "2sm"] }],
},
},
});
export function cn(...inputs: ClassValue[]) {
return customTwMerge(clsx(inputs));
}