import * as React from 'react'; import Button from '../button'; export interface TransferOperationProps { className?: string; leftArrowText?: string; rightArrowText?: string; moveToLeft?: React.MouseEventHandler; moveToRight?: React.MouseEventHandler; leftActive?: boolean; rightActive?: boolean; style?: React.CSSProperties; disabled?: boolean; } const Operation = ({ disabled, moveToLeft, moveToRight, leftArrowText = '', rightArrowText = '', leftActive, rightActive, className, style, }: TransferOperationProps) => (
); export default Operation;