neuroread/lib/utils.ts
2025-04-08 13:20:49 -04:00

7 lines
175 B
TypeScript

import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}