mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-10 14:39:50 +00:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import { type ClassValue, clsx } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export const mergeCls = (...inputs: ClassValue[]) => {
|
|
return twMerge(clsx(inputs));
|
|
};
|