NERDDISCO's picture
feat: added react / tailwind ui
0d9f1af
raw
history blame
169 Bytes
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}