hamza82's picture
make this code runable and solve error
1201570
raw
history blame
173 Bytes
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}