LifeSim / src /lib /utils.ts
jbilcke-hf's picture
jbilcke-hf HF staff
initial commit ๐Ÿ ๐Ÿชธ
c7b9c60
raw
history blame
167 Bytes
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}