Files
gastro-bot/src/shared/lib/utils.ts
Samandar Turgunboyev a5b46a9f26 init create-fias
2025-12-12 11:21:30 +05: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));
}