Files
podman/examples/livekit-gemini-hacker-starter/frontend/lib/shadcn/utils.ts
T
2026-06-28 07:20:54 +00:00

7 lines
169 B
TypeScript

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