import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M832 32c88.368 0 160 71.632 160 160v640c0 88.368-71.632 160-160 160H192c-88.368 0-160-71.632-160-160V192C32 103.632 103.632 32 192 32h640z m0 72H192c-47.832 0-86.744 38.16-87.968 85.696L104 192v640c0 47.832 38.16 86.744 85.696 87.968L192 920h640c47.832 0 86.744-38.16 87.968-85.696L920 832V192c0-47.832-38.16-86.744-85.696-87.968L832 104z"></path>
  <path d="M752 264a64 64 0 0 1 31.776 119.568C749.88 503.92 641.04 591.992 512 591.992 382.96 592 274.12 503.92 240.224 383.568a64 64 0 1 1 74-7.472c29.04 82.68 106.624 141.84 197.776 141.84 91.152 0 168.736-59.16 197.784-141.84A64 64 0 0 1 752 264z"></path>
</svg>

  );
}