This commit is contained in:
Vula Builder
2026-07-26 16:40:56 +00:00
parent 3c140fb34a
commit 74209af1c3
+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))
}