This commit is contained in:
FlintyLemming
2024-12-09 17:29:54 +08:00
parent 4b017fd936
commit 00630209f1
17 changed files with 729 additions and 259 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))
}