Files
ignum/lib/utils.ts
nabijonovdavronbek619@gmail.com ff10553786 new
2026-01-22 16:29:34 +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))
}