Skip to main content

SearchInput

Search input with auto-completion.

Props

Any HTML Input props

Example with code

import SearchInput from '@components/SearchInput';

const MyComponent = () => {
return (
<SearchInput type="search" name="q" placeholder="Search..." />
);
};