hermes-web/lib/utils.ts

7 lines
166 B
TypeScript
Raw Permalink Normal View History

2023-12-30 04:00:54 -05:00
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}