Files
zeroone/src/lib/utils.ts
KM 6e4dc5e9db init
Initial mock up of the app
2024-01-22 12:03:56 +01:00

7 lines
166 B
TypeScript

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