mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-14 06:57:33 +02:00
7 lines
188 B
TypeScript
7 lines
188 B
TypeScript
import type { ClassValue } from "clsx";
|
|
import clsx from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|