beta/lib/utils.ts
Christopher Arraya 53c3cd3d6e initial commit
2023-11-04 14:57:25 -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))
}