import React, { Component, PropTypes } from 'react'; import Button from '../button'; import Icon from '../icon'; function noop() { } class TransferOperation extends Component { render() { const { moveToLeft, moveToRight, leftArrowText, rightArrowText, leftActive, rightActive, prefixCls, height } = this.props; return
{ rightArrowText ? : } {leftArrowText ? : }
; } } TransferOperation.defaultProps = { prefixCls: 'ant-transfer-operation', leftArrowText: '', rightArrowText: '', height: 150, moveToLeft: noop, moveToRight: noop, }; TransferOperation.propTypes = { prefixCls: PropTypes.string, leftArrowText: PropTypes.string, rightArrowText: PropTypes.string, moveToLeft: PropTypes.func, moveToRight: PropTypes.func, }; export default TransferOperation;