jjreif's picture
Deploy roverdevkit @ 2676a67
b3d14e3
Raw
History Blame Contribute Delete
242 Bytes
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
/** Standard shadcn `cn` helper: merge Tailwind class strings safely. */
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}