scira-chat / lib /utils.ts
mukaddamzaid's picture
init commit
5012205
raw
history blame
166 Bytes
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}