(...inputs)
| 2 | import { twMerge } from "tailwind-merge"; |
| 3 | |
| 4 | export function cn(...inputs) { |
| 5 | return twMerge(clsx(inputs)); |
| 6 | } |
| 7 | |
| 8 | export function displayInitials(name) { |
| 9 | if (!name || typeof name !== "string") return "?"; |
no outgoing calls
no test coverage detected