jbilcke's picture
working to improve the clap format
f42b4a1
raw
history blame
No virus
167 Bytes
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}