mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-13 22:18:51 +01:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
|
|
// ESM utility functions
|
||
|
|
import { type ClassValue, clsx } from 'clsx';
|
||
|
|
import { twMerge } from 'tailwind-merge';
|
||
|
|
|
||
|
|
export const cn = (...inputs: ClassValue[]): string => {
|
||
|
|
return twMerge(clsx(inputs));
|
||
|
|
};
|