blob: ac680b303c9f4606446fb080a9cbc7c222ea5a99 [file] [log] [blame]
giod0026612025-05-08 13:00:36 +00001import { type ClassValue, clsx } from "clsx";
2import { twMerge } from "tailwind-merge";
gio5f2f1002025-03-20 18:38:48 +04003
4export function cn(...inputs: ClassValue[]) {
giod0026612025-05-08 13:00:36 +00005 return twMerge(clsx(inputs));
gio5f2f1002025-03-20 18:38:48 +04006}