Files
tech-tracker-next/src/lib/utils.ts
2025-06-09 09:55:49 -05:00

7 lines
168 B
TypeScript

import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}