mirror of
https://github.com/srbhr/Resume-Matcher.git
synced 2026-01-19 15:27:13 +00:00
- 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.
13 lines
375 B
TypeScript
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);
|
|
}
|