import cx from 'classnames'; import Button from '../../button'; import { Direction } from '../constants'; import { ITransferArrowButton } from '../types'; import Icon from '../../icon'; const ArrowButton: React.FC = ({ direction, onChange, disabled, prefix, }) => { return ( ); }; export default ArrowButton;