stillerman's picture
stillerman HF Staff
init
4a656fb
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))
}