mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-06-27 18:05:41 -04:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import { clsx, type ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export const cn = (...inputs: ClassValue[]) => {
|
|
return twMerge(clsx(inputs));
|
|
};
|