From 15fc93e55789b7ef12e2199eb1ab37269ab3a88a Mon Sep 17 00:00:00 2001 From: rajun Date: Tue, 28 Jul 2026 11:22:37 +0530 Subject: [PATCH] feat: add shared cn utility --- app/lib/utils.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/lib/utils.ts diff --git a/app/lib/utils.ts b/app/lib/utils.ts new file mode 100644 index 0000000..3877c89 --- /dev/null +++ b/app/lib/utils.ts @@ -0,0 +1,6 @@ +import { clsx, type ClassValue } from 'clsx'; +import { twMerge } from 'tailwind-merge'; + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)); +}