Files
dwatt/lib/utils.ts
nabijonovdavronbek619@gmail.com 0e8b310558 language text full complated
2025-11-10 17:21:28 +05:00

7 lines
166 B
TypeScript

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