mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 09:20:00 +02:00
6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import { type ClassValue, clsx } from 'clsx'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
export const cn = (...inputs: ClassValue[]) => {
|
|
return twMerge(clsx(inputs))
|
|
}
|