This commit is contained in:
2026-03-02 02:59:47 +08:00
parent 668515a451
commit 6ecc82b675
13 changed files with 375 additions and 254 deletions

View File

@@ -0,0 +1,7 @@
import type { ClassValue } from "clsx"
import { clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}