Add shadcn components

This commit is contained in:
Rami Bitar
2026-05-03 19:04:53 -04:00
parent c9b64e78d8
commit 5d854c5d75
62 changed files with 8771 additions and 65 deletions

6
lib/utils.ts Normal file
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))
}