VidSimplify / frontend /src /lib /utils.ts
Adityahulk
Restoring repo state for deployment
6fc3143
Raw
History Blame Contribute Delete
171 Bytes
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}