Uecko_ERP/packages/ui/src/lib/utils.ts

7 lines
169 B
TypeScript
Raw Normal View History

2025-05-02 21:43:51 +00:00
import { clsx, type ClassValue } from "clsx";
2025-01-28 14:01:02 +00:00
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}