We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26798b4 + 0f9f5f7 commit 280cd6bCopy full SHA for 280cd6b
.gitignore
@@ -15,6 +15,7 @@ downloads/
15
eggs/
16
.eggs/
17
lib/
18
+!frontend/src/lib
19
lib64/
20
parts/
21
sdist/
frontend/src/lib/utils.ts
@@ -0,0 +1,6 @@
1
+import { clsx, type ClassValue } from 'clsx';
2
+import { twMerge } from 'tailwind-merge';
3
+
4
+export function cn(...inputs: ClassValue[]) {
5
+ return twMerge(clsx(inputs));
6
+}
0 commit comments