RM / src /lib /utils.ts
trretretret's picture
Comprehensive frontend fixes: Updated gitignore, fixed all import paths, enhanced lib utilities
49e7bf6
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
/**
* cn - Class Names Utility
* Combines clsx and tailwind-merge for optimal class handling
*/
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}