llm-pricing / src /lib /utils.ts
philschmid's picture
philschmid HF staff
init
343b64b
raw
history blame
No virus
166 Bytes
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}