mirror of
https://github.com/ershisan99/vacancies-trends-front.git
synced 2025-12-16 12:34:06 +00:00
7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
import clsx, { type ClassValue } from 'clsx'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
export function cx(...args: ClassValue[]) {
|
|
return twMerge(clsx(...args))
|
|
}
|