ChopFresh / src /lib /utils.ts
pranav8tripathi@gmail.com
init
56ea4c7
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}