This commit is contained in:
Jaime Freire
2023-12-02 13:36:52 +01:00
parent d7251d13a2
commit 059c99c70f
24 changed files with 8180 additions and 0 deletions

6
lib/utils.ts Normal file
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))
}