Create src/lib/utils.ts

This commit is contained in:
marciobever 2026-05-03 14:56:03 +00:00
parent fc39f73b7e
commit 426ac34765

6
src/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));
}