Spaces:
Sleeping
Sleeping
File size: 242 Bytes
b3d14e3 | 1 2 3 4 5 6 7 8 | 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));
}
|