Files
goGin/frontend/lib/utils.ts
Beyhan Oğur 2a5b661443 first commit
2026-04-26 21:46:42 +03:00

7 lines
166 B
TypeScript

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