(...inputs: ClassValue[])
| 1 | import { type ClassValue, clsx } from "clsx"; |
| 2 | import { twMerge } from "tailwind-merge"; |
| 3 | export const cn = (...inputs: ClassValue[]) => { |
| 4 | return twMerge(clsx(inputs)); |
| 5 | }; |
| 6 | |
| 7 | export const getFlagPath = (countryCode: string): string => { |
| 8 | return `/flags/${countryCode}.svg`; |
no outgoing calls
no test coverage detected