(...inputs: ClassValue[])
| 8 | import { NodeConditionType } from '@/types/k8s' |
| 9 | |
| 10 | export function cn(...inputs: ClassValue[]) { |
| 11 | return twMerge(clsx(inputs)) |
| 12 | } |
| 13 | |
| 14 | // Simple debounce function for string input handlers with cancel support |
| 15 | export function debounce(fn: (value: string) => void, delay: number) { |
no outgoing calls
no test coverage detected