ui-v2: Integrate bossui + chart component (#2622)

This commit is contained in:
Zane
2025-05-21 20:24:34 -07:00
committed by GitHub
parent f71bebe1d7
commit b3dc1289f4
22 changed files with 1787 additions and 383 deletions

6
ui-v2/lib/utils.ts Normal file
View File

@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}