import React, { PureComponent } from 'react' import PropTypes from 'prop-types' import Input from '../atoms/Input' import styles from './SearchInput.module.scss' export default class SearchInput extends PureComponent { static propTypes = { onToggle: PropTypes.func } render() { return ( <> ) } }