added missing lib/utils.ts in devui frontend (#1197)

Co-authored-by: Alex Lavaee <alexlavaee@microsoft.com>
This commit is contained in:
Alex Lavaee
2025-10-06 00:34:34 -07:00
committed by GitHub
Unverified
parent 5a7ca13af6
commit 0cd794abe7
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@ downloads/
eggs/
.eggs/
lib/
!python/packages/devui/frontend/src/lib/
lib64/
parts/
sdist/
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}