Rainnny7
4ea7794fdc
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Failing after 29s
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
import { type ClassValue, clsx } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export const cn = (...inputs: ClassValue[]) => {
|
|
return twMerge(clsx(inputs));
|
|
};
|