import { type ClassValue, clsx } from "clsx" import { twMerge } from "tailwind-merge" /** * cn - Class Names Utility * Combines clsx and tailwind-merge for optimal class handling */ export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)) }