Files
BiliNote/BillNote_frontend/src/lib/utils.ts
Jefferyhcool 0e0b8da317 first commit
2025-04-13 17:44:54 +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))
}