afiqzudinhadi.github.io/app/lib/utils.ts
afiqzudinhadi 7335ea2581 init
init

init

init
2025-06-05 22:30:15 +08:00

6 lines
166 B
TypeScript

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