codex-ai-platform / src /lib /utils.ts
3v324v23's picture
chore: initial commit for huggingface spaces
6bb2fbe
raw
history blame contribute delete
166 Bytes
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}