feat: add shared cn utility

This commit is contained in:
rajun 2026-07-28 11:22:37 +05:30
parent 1636beb629
commit 15fc93e557

6
app/lib/utils.ts Normal file
View File

@ -0,0 +1,6 @@
import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}