Update lib/utils.ts

This commit is contained in:
kleap-admin 2026-01-18 18:29:51 +00:00
parent 44d37959fc
commit 0f04d1fc86
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));
}