InSono / client /src /lib /utils.ts
milos-milic's picture
Initial commit - InSono MVP clean
8c440cf
raw
history blame contribute delete
166 Bytes
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}