mirror of
https://github.com/Xevion/smart-rgb.git
synced 2025-12-17 00:13:21 -06:00
7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
import { type ClassValue, clsx } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|