vrs2 / src /lib /utils.js
Chooth's picture
SmellPantySpace
ddaefb9 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));
}