shadcn & theme toggle

This commit is contained in:
2024-09-15 16:38:21 -05:00
parent a8451c8afb
commit 79f978230d
16 changed files with 1352 additions and 130 deletions

6
src/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))
}