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