Amba-Agent-App/lib/utils.ts
2026-01-16 00:22:35 +03:00

6 lines
175 B
TypeScript

import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}