Files
Resume-Matcher/apps/frontend/lib/utils.ts
srbhr 8918bd3f13 docs: add installation guide and remove outdated setup documents
- Introduced a comprehensive installation guide (INSTALL.md) for setting up Resume Matcher for local development, detailing prerequisites, quick start instructions, and CORS configuration.
- Removed outdated setup documents (SETUP.md and SETUP.es.md) to streamline the documentation and avoid confusion.
- Updated README.md to reflect new features and improvements, including multi-provider LLM support and enhanced resume tailoring capabilities.
2025-12-24 02:49:34 +05:30

13 lines
375 B
TypeScript

import { type ClassValue, clsx } from 'clsx';
/**
* Combines multiple class names or class name objects into a single string.
* Uses clsx for conditional class logic.
*
* @param inputs - Class values to be combined (strings, objects, arrays)
* @returns A string of combined class names
*/
export function cn(...inputs: ClassValue[]): string {
return clsx(inputs);
}