vrs1 / src /lib /utils.js
Chooth's picture
SmellPantySpace
c159ff4 verified
raw
history blame contribute delete
137 Bytes
import { clsx } from "clsx";
import { twMerge } from "tailwind-merge"
export function cn(...inputs) {
return twMerge(clsx(inputs));
}