Shortlist / frontend /src /lib /utils.ts
Eren-Sama
Initial commit — full-stack AI portfolio architect
53e1531
raw
history blame contribute delete
169 Bytes
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}