This commit is contained in:
cdricms
2025-01-12 23:28:51 +01:00
commit 3e84305d46
29 changed files with 9817 additions and 0 deletions

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));
}