// Copyright (C) 2017-2023 Smart code 203358507 const React = require('react'); const PropTypes = require('prop-types'); const classnames = require('classnames'); const { default: Icon } = require('@stremio/stremio-icons/react'); const { default: TextInput } = require('../TextInput'); const SearchBarPlaceholder = require('./SearchBarPlaceholder'); const styles = require('./styles'); const SearchBar = ({ className, title, value, onChange }) => { return ( ); }; SearchBar.Placeholder = SearchBarPlaceholder; SearchBar.propTypes = { className: PropTypes.string, title: PropTypes.string, value: PropTypes.string, onChange: PropTypes.func }; module.exports = SearchBar;