Nitish kumar
Upload folder using huggingface_hub
c20f20c verified
raw
history blame contribute delete
169 Bytes
import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}