Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui-presets / dist / forms / views / SearchInput / typings.d.ts
Size: Mime:
import { ReactNode } from 'react';
import { ValidationStrategy } from '@skava/forms/build/dist/new-forms/strategies';
interface SearchInputRenderProp extends Function {
    (props: SearchInputProps): ReactNode;
}
interface SearchInputProps extends ValidationStrategy {
    className?: string;
    children?: ReactNode;
    strategy: ValidationStrategy;
    dataQa?: string;
    renderForm?: SearchInputRenderProp;
    renderWrapper?: SearchInputRenderProp;
}
export { SearchInputProps, };