Files
aha/aha-ui/src/lib/utils.ts
T
PoRi 5ca96c4092 feat 集成shadcn
Co-authored-by: Copilot <copilot@github.com>
2026-04-25 16:12:02 +08:00

7 lines
166 B
TypeScript

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