Repository URL to install this package:
|
Version:
2.1.7 ▾
|
import { ReactNode } from 'react'
export interface SearchInputRenderProp extends Function {
(props: SearchInputProps): ReactNode
}
export interface SearchInputProps {
className?: string
children?: ReactNode
hasTitle?: boolean
// renderProps
renderWrapper: SearchInputRenderProp
}