skalara-mvp/lib/utils.ts
Christopher Arraya edad18319a initial commit
2023-11-03 22:01:41 -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))
}