mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
4d1ffc2199
# Conflicts: # packages/bot/src/create-bot.ts
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
import { clsx } from "clsx";
|
|
import type { ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|