Add missing lib/utils.ts and fix .gitignore

This commit is contained in:
chihlasm
2026-01-28 22:11:09 -05:00
parent 5a0dff1da9
commit 0fe2ca850f
2 changed files with 7 additions and 1 deletions

View File

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