6 lines
164 B
TypeScript
Raw Permalink Normal View History

2024-05-26 02:14:59 -04:00
import { ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}