1
0
Fork 0
mirror of https://github.com/lukevella/rallly.git synced 2025-05-30 09:16:23 +02:00
rallly/packages/ui/lib/utils.ts
Luke Vella c22b3abc4d
⬆️ v3.0.0 ()
2023-06-19 17:17:00 +01:00

6 lines
169 B
TypeScript

import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}