kioai / artifacts /image-gen /src /lib /utils.ts
kinaiok
Initial deployment setup for Hugging Face Spaces
5ef6e9d
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))
}