mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import { type ClassValue, clsx } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|