gc-wing/packages/ui/src/utils/cn.ts
htlee a4859f54bc chore: Tailwind CSS v4 + @wing/ui 패키지 인프라 구축
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 06:10:04 +09: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));
}