PDC / frontend /lib /utils.ts
borndeveloper's picture
Initial commit: PDC Intelligence application
ecd72cb
Raw
History Blame Contribute Delete
169 Bytes
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}