(source: any)
| 54 | }; |
| 55 | |
| 56 | export const isValidIcon = (source: any) => |
| 57 | typeof source === 'string' || |
| 58 | typeof source === 'function' || |
| 59 | isImageSource(source); |
| 60 | |
| 61 | export const isEqualIcon = (a: any, b: any) => |
| 62 | a === b || getIconId(a) === getIconId(b); |
no test coverage detected
searching dependent graphs…