Files
indexer/lib/utils.ts
T
inhale-dir 91b4b5802f init commit
2025-05-23 23:08:13 +02: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))
}