chatwoot-develop/enterprise/app/javascript/captain_booking_app/lib/utils.ts
2026-01-12 19:04:15 -03:00

8 lines
170 B
TypeScript
Executable File

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