skalara/lib/utils.ts
Christopher Arraya f98072c7cf initial commit
2023-09-16 23:15:44 -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))
}