feat: integrate shadcn/ui with Tailwind v4

This commit is contained in:
2026-07-01 14:38:20 +00:00
parent 11ce5b59b3
commit 4d98eaccbd
21 changed files with 1896 additions and 13217 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));
}