This commit is contained in:
Julien Valverdé
2024-07-19 01:26:32 +02:00
parent ea2fc9f23f
commit e1cbe27c56

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))
}