import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M865.32 635.296v178.008c0 56.672-44.696 102.616-99.84 102.616H242.856c-55.144 0-99.84-45.944-99.84-102.616V657.048a31.376 31.376 0 1 1 62.76 0v156.256c0 21.048 16.6 38.112 37.08 38.112h522.624c20.48 0 37.088-17.064 37.088-38.112V635.296a31.376 31.376 0 0 1 62.752 0z"></path><path d="M756.2 100.08c35.936 0 68.296 21.752 81.872 55.032l67.2 164.72a201.288 201.288 0 0 1-18.664 187.352 144.368 144.368 0 0 1-171.064 55.296l-87.576-32.904-47.752 26.904a155.056 155.056 0 0 1-151.808 0.224l-47.304-26.464-59.48 27.4a145.72 145.72 0 0 1-166.16-31.512l-12.728-13.28a181.368 181.368 0 0 1-35.384-197.912l70.4-161.72a88.424 88.424 0 0 1 81.072-53.136h497.376z m0 72H258.824c-6.096 0-11.656 3.376-14.496 8.704l-0.56 1.168-70.4 161.72a109.368 109.368 0 0 0 19.464 117.336l1.872 2.008 12.736 13.28a73.72 73.72 0 0 0 81.856 16.92l2.2-0.976 92.776-42.728 79.288 44.352a83.056 83.056 0 0 0 78.936 1.176l2.384-1.296 76.992-43.376 118.992 44.72a72.368 72.368 0 0 0 85.76-27.72 129.288 129.288 0 0 0 13.136-117.44l-1.152-2.904-67.2-164.72a16.432 16.432 0 0 0-13.888-10.168l-1.32-0.056z"></path></svg>
  );
}