web-production-saas-starter/next_b2b_starter/lib/utils.ts
2025-12-16 18:54:41 +04:00

6 lines
No EOL
165 B
TypeScript

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