feat 集成shadcn

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
PoRi
2026-04-25 13:12:44 +08:00
parent e9a33e74fd
commit 5ca96c4092
18 changed files with 6482 additions and 125 deletions
+6
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))
}