This commit is contained in:
Vula Builder
2026-08-01 16:26:30 +00:00
parent 30397b12c5
commit c8fb3b67f7
+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))
}