Gnan Deep Rathan K
Deploy dashboard without binary lockfile
1b83e76
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));
}