Files
ai-stack-deployer/client/src/lib/utils.ts
Oussama Douhou 8977a6fdee
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m18s
New design v0.2
New design and framework
2026-01-13 10:49:47 +01:00

7 lines
166 B
TypeScript

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