Files
Webklar.com/lib/utils.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

7 lines
169 B
TypeScript

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