chore(ui): 初始化 shadcn 基础框架,配置暗黑模式与核心组件

This commit is contained in:
2026-04-27 20:44:26 +08:00
parent 9c234009d4
commit 8563d0385c
17 changed files with 2506 additions and 57 deletions
+6
View File
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}