cfahlgren1's picture
cfahlgren1 HF staff
create new project 🏎️
390e277
raw
history blame
166 Bytes
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}