Files
cunkebao_v3/Cunkebao/app/lib/utils.ts
2025-04-02 16:00:10 +08:00

8 lines
167 B
TypeScript
Executable File

import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}