QuantIQ / frontend /src /lib /utils.ts
Karan6124's picture
feat: set up Tailwind v4 and implement cinematic video background landing page
da21810
Raw
History Blame Contribute Delete
166 Bytes
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}