This commit is contained in:
2026-05-31 21:32:28 +02:00
parent 95916cedde
commit 84fb410316
63 changed files with 7596 additions and 11 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))
}