mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
|
import { ClassValue, clsx } from "clsx";
|
||
|
import { twMerge } from "tailwind-merge";
|
||
|
|
||
|
export function cn(...inputs: ClassValue[]) {
|
||
|
return twMerge(clsx(inputs));
|
||
|
}
|