mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
"use client";
|
|
|
|
import { type ClassValue, clsx } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|