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); } 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;