devforge / lib /utils.ts
Hanzo Dev
Replace @hanzo /ui with local UI components for React 19 compatibility
bbc67f0
raw
history blame contribute delete
165 Bytes
import { clsx, type ClassValue } from 'clsx'
import { twMerge } from 'tailwind-merge'
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}