mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
- Remove getPath function (moved to problem-editor store) - Remove getDifficultyColorClass function (unused) - Keep only core cn utility function
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import { twMerge } from "tailwind-merge";
|
|
import { clsx, type ClassValue } from "clsx";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|