mirror of
https://github.com/imdap/ruoyi-plus-vben5.git
synced 2026-05-09 12:11:25 +08:00
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
import { type ClassValue, clsx } from 'clsx';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|
|
|
|
export { cn };
|