neo1 / artifacts /neo1-chat /src /lib /utils.ts
bentosmau
Configure the application to run within its own preview pane
9b1ac5a
Raw
History Blame Contribute Delete
166 Bytes
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}