commerce/@/lib/utils.ts
Benson Wally Tran dc4c20be9b proof of concept
2023-11-17 19:29:41 -06:00

7 lines
169 B
TypeScript

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