This commit is contained in:
Ayush Acharjya
2024-10-25 12:01:19 +01:00
commit aa086e3699
21 changed files with 6592 additions and 0 deletions

6
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));
}