mirror of
https://github.com/Dokploy/website.git
synced 2026-06-15 20:25:25 +02: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));
|
|
}
|