frontend/app/lib/utils.ts
Nathan b54d087a51
Some checks failed
Deploy to Netlify / Deploy to Netlify (push) Failing after 1m8s
🎉 Initial commit
2025-06-19 15:48:47 +02:00

6 lines
169 B
TypeScript

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