Add initial shadcn configuration files and utilities

This commit is contained in:
pheralb
2025-08-21 10:53:41 +01:00
parent e49dae5460
commit 0ef7c50322
4 changed files with 39 additions and 0 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));
}