UNPKG

@lonelyplanet/dotcom-core

Version:

This package is meant to house some of our more common UI and shared libs across dotcom applications.

14 lines (13 loc) 388 B
import * as React from "react"; export interface ISearchInputProps { id?: string; name?: string; className?: string; value?: string; placeholder?: string; required?: boolean; onChange?: any; innerRef?: any; } declare const SearchInput: React.ForwardRefExoticComponent<ISearchInputProps & React.RefAttributes<HTMLInputElement>>; export default SearchInput;