7 lines
171 B
TypeScript
Raw Permalink Normal View History

2025-02-24 15:52:36 +07:00
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}