Files
PrivyDrop/frontend/lib/utils.ts
T
2025-05-23 22:41:56 +08:00

7 lines
166 B
TypeScript
Executable File

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