le-app/app/lib/utils.ts

8 lines
181 B
TypeScript
Raw Permalink Normal View History

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