waitlist/lib/utils.ts
Christopher Arraya 353c075007 initial commit
2023-07-02 20:10:14 -04:00

7 lines
167 B
TypeScript

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