import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M872 944H152c-39.6 0-72-32.4-72-72V584c0-19.8 16.2-36 36-36S152 564.2 152 584v270c0 10.8 7.2 18 18 18h684c10.8 0 18-7.2 18-18V584c0-19.8 16.2-36 36-36s36 16.2 36 36v288c0 39.6-32.4 72-72 72zM266.8 306.8l216-216c5.4-7.2 14.4-10.8 25.2-10.8 10.8 0 19.8 3.6 25.2 10.8l216 216c7.2 7.2 10.8 16.2 10.8 25.2 0 19.8-16.2 36-36 36-10.8 0-19.8-3.6-25.2-10.8L544 202.4v489.6c0 19.8-16.2 36-36 36a36.104 36.104 0 0 1-36-36V202.4L317.2 357.2c-5.4 7.2-14.4 10.8-25.2 10.8a36.104 36.104 0 0 1-36-36c0-10.8 3.6-19.8 10.8-25.2z"></path>
</svg>

  );
}