This commit is contained in:
Vula Builder
2026-07-25 11:17:55 +00:00
parent 998186f88c
commit b1dfcd20f0
+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))
}