(event: MouseEvent)
| 100 | } = useInputField(value as string | number | readonly string[], valueChanged); |
| 101 | |
| 102 | const onClearClick = (event: MouseEvent): void => { |
| 103 | event.stopPropagation(); |
| 104 | setInput(''); |
| 105 | }; |
| 106 | |
| 107 | const isPrimary = fieldType === 'primary'; |
| 108 | const isSecondary = fieldType === 'secondary'; |
nothing calls this directly
no test coverage detected