import React, { Component, PropTypes } from 'react'; import Icon from '../icon'; function noop() { } class Search extends Component { handleChange(e) { this.props.onChange(e); } handleClear(e) { e.preventDefault(); this.props.handleClear(e); } render() { const { placeholder, value, prefixCls } = this.props; return (
{ value && value.length > 0 ? : }
); } } Search.defaultProps = { placeholder: '', onChange: noop, handleClear: noop, }; Search.propTypes = { prefixCls: PropTypes.string, placeholder: PropTypes.string, onChange: PropTypes.func, handleClear: PropTypes.func, }; export default Search;