mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
import { ClassValue, clsx } from 'clsx';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|