feat: 增加 shadcn 样式

This commit is contained in:
hzm
2026-03-06 22:34:10 +08:00
parent 1f9a4ff97a
commit 792986dd79
11 changed files with 6357 additions and 33 deletions

6
lib/utils.js Normal file
View File

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