RedactX / src /ui /lib /utils.ts
GitHub Actions
Deploy from GitHub
ac4a6d6
Raw
History Blame Contribute Delete
168 Bytes
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}