add: shadcn switch

This commit is contained in:
Mahyar Khanbolooki
2025-07-11 21:07:56 +03:30
parent 7e4694f385
commit 3460e3e5bc
6 changed files with 442 additions and 23 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))
}