Update lib/utils.ts

This commit is contained in:
kleap-admin 2026-01-18 13:39:57 +00:00
parent 9aa193f6db
commit 4a5b4c5d6f
1 changed files with 6 additions and 0 deletions

6
lib/utils.ts Normal file
View File

@ -0,0 +1,6 @@
import { ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}