import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M485.6 74.936C491.064 67.648 500.176 64 511.112 64s20.04 3.648 25.512 10.936L819.28 357.6c7.288 7.288 10.936 16.4 10.936 25.512a36.552 36.552 0 0 1-36.448 36.44c-10.928 0-20.04-3.64-25.512-10.928l-220.712-220.72v743.648A36.552 36.552 0 0 1 511.12 968a36.552 36.552 0 0 1-36.448-36.448V187.92L253.952 408.624c-5.464 7.28-14.576 10.928-25.504 10.928A36.552 36.552 0 0 1 192 383.12c0-10.936 3.648-20.048 10.936-25.512L485.6 74.936z"></path></svg>
  );
}