| 5 | import { hasAddon, hasPrefixSuffix } from './utils/commonUtils'; |
| 6 | |
| 7 | export interface HolderRef { |
| 8 | /** Provider holder ref. Will return `null` if not wrap anything */ |
| 9 | nativeElement: HTMLElement | null; |
| 10 | } |
| 11 | |
| 12 | const BaseInput = React.forwardRef<HolderRef, BaseInputProps>((props, ref) => { |
| 13 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…