bringing back ui components

This commit is contained in:
wass08
2026-01-16 10:49:22 +09:00
parent 60cb60fdaa
commit d657f4125f
28 changed files with 2487 additions and 192 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));
}