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

2
.gitignore vendored
View File

@@ -14,7 +14,7 @@ dist/
downloads/
eggs/
.eggs/
lib/
/lib/
lib64/
parts/
sdist/

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