Skip to content

Commit e87aaa4

Browse files
Merge pull request #4 from withceleste/fix/add-utils-ts
fix: add missing utils.ts (cn utility)
2 parents e0385ac + 664a753 commit e87aaa4

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/lib/utils.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { type ClassValue, clsx } from "clsx";
2+
import { twMerge } from "tailwind-merge";
3+
4+
export function cn(...inputs: ClassValue[]) {
5+
return twMerge(clsx(inputs));
6+
}

0 commit comments

Comments
 (0)