skalara-web/lib/utils.ts
Christopher Arraya 299b5c4001 initial commit
2023-07-26 16:40:21 -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))
}