anycoder-79e3ef8c / lib /utils.js
serotoninboi's picture
Upload lib/utils.js with huggingface_hub
5d94e07 verified
raw
history blame contribute delete
134 Bytes
import { clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs) {
return twMerge(clsx(inputs))
}