mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-24 19:26:14 +01:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
|
|
import { twMerge } from 'tailwind-merge';
|
||
|
|
import { clsx } from 'clsx';
|
||
|
|
|
||
|
|
export default function cn(...inputs: string[]) {
|
||
|
|
return twMerge(clsx(inputs));
|
||
|
|
}
|