import React from 'react'; import Button from '../button'; function noop() { } export interface TransferOperationProps { className?: string; leftArrowText?: string; rightArrowText?: string; moveToLeft?: React.FormEventHandler; moveToRight?: React.FormEventHandler; leftActive?: boolean; rightActive?: boolean; } export default (props: TransferOperationProps) => { const { moveToLeft = noop, moveToRight = noop, leftArrowText = '', rightArrowText = '', leftActive, rightActive, className, } = props; return (
); };