Spotix-API / frontend /lib /utils.ts
Anish530's picture
Initial commit of full project [remaining backend some parts and frontend to be done yet]
aa27d2d
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))
}