atom-landing / src /lib /utils.ts
Florin Bobiș
shadcn init
028e2f6
raw
history blame
166 Bytes
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}