This commit is contained in:
Vula Builder
2026-07-26 17:41:17 +00:00
parent e89aff0b2a
commit 343c7569f2
+6
View File
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}