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