short-url/lib/utils.ts
2024-11-29 21:50:50 +08:00

7 lines
166 B
TypeScript
Executable File

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