ai / lib /utils.ts
hadadrjt's picture
ai: Migrate to assistant-ui.
091295b
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}