Skip to content

Commit

Permalink
chore: remove lib folder from gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
YangFong committed Aug 17, 2024
1 parent d16bfc0 commit e75b1e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ yarn-debug.log*
yarn-error.log*

dist
lib

node_modules

Expand Down
6 changes: 6 additions & 0 deletions src/lib/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'

export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}

0 comments on commit e75b1e0

Please sign in to comment.