Modified by www.SourceFiles.app

This commit is contained in:
2026-08-07 04:15:14 +00:00
parent 8ad248aed5
commit a186288dce
+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));
}