(e)
| 46 | const containerRef = useRef<HTMLDivElement>(null); |
| 47 | |
| 48 | const onInputClick: React.MouseEventHandler = (e) => { |
| 49 | if (containerRef.current?.contains(e.target as Element)) { |
| 50 | triggerFocus?.(); |
| 51 | } |
| 52 | }; |
| 53 | |
| 54 | const hasAffix = hasPrefixSuffix(props); |
| 55 |
nothing calls this directly
no test coverage detected
searching dependent graphs…