chore: import shadcn

This commit is contained in:
2025-10-25 15:22:27 +08:00
parent fbf4f5f98f
commit cd12b4297d
8 changed files with 467 additions and 39 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))
}