We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e0385ac + 664a753 commit e87aaa4Copy full SHA for e87aaa4
1 file changed
src/lib/utils.ts
@@ -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