AudioForge Deploy
chore: pre-deployment polish & fixes
5bf2d26
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
/**
* Merges class names with Tailwind CSS conflict resolution.
* Uses clsx for conditional classes and tailwind-merge to resolve conflicts.
*/
export function cn(...inputs: ClassValue[]): string {
return twMerge(clsx(inputs));
}