Files
Wdipl-react/components/ui/utils.ts
priyanshuvish 8a5bb95a0e first commit
2025-07-11 16:54:37 +05:30

7 lines
169 B
TypeScript

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