startupkit / lib /utils.ts
Hanzo Dev
Replace @hanzo /ui with local UI components for React 19 compatibility
1c6e6d0
import { clsx, type ClassValue } from 'clsx'
import { twMerge } from 'tailwind-merge'
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}