import * as React from 'react';

const DefaultStyles = {
  width: '1em',
  height: '1em',
  verticalAlign: 'middle',
  fill: 'currentColor',
  overflow: 'hidden'
};

export default function MoveDown(props = {}) {
  const styles = Object.assign({}, DefaultStyles, props.style);

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M485.6 957.064c5.464 7.288 14.576 10.936 25.512 10.936s20.04-3.648 25.512-10.936L819.28 674.4c7.288-7.288 10.936-16.4 10.936-25.512a36.552 36.552 0 0 0-36.448-36.44c-10.928 0-20.04 3.64-25.512 10.928l-220.712 220.72V100.44A36.552 36.552 0 0 0 511.12 64a36.552 36.552 0 0 0-36.448 36.448v743.64L253.952 623.376c-5.464-7.28-14.576-10.928-25.504-10.928A36.552 36.552 0 0 0 192 648.88c0 10.936 3.648 20.048 10.936 25.512L485.6 957.064z"></path></svg>
  );
}