(event: MouseEvent)
| 93 | } = useInputField(value as string | number | readonly string[], valueChanged); |
| 94 | |
| 95 | const onClearClick = (event: MouseEvent): void => { |
| 96 | event.stopPropagation(); |
| 97 | setInput(''); |
| 98 | }; |
| 99 | |
| 100 | const isPrimary = fieldType === 'primary'; |
| 101 | const isSecondary = fieldType === 'secondary'; |
nothing calls this directly
no test coverage detected