blob: ac680b303c9f4606446fb080a9cbc7c222ea5a99 [file] [log] [blame]
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}