Files
PrivyDrop/frontend/lib/utils.ts
T
2025-06-22 21:34:54 +08:00

7 lines
169 B
TypeScript
Executable File

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