import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M56 88m36 0l792 0q36 0 36 36l0 0q0 36-36 36l-792 0q-36 0-36-36l0 0q0-36 36-36Z"></path>
  <path d="M56 336m36 0l792 0q36 0 36 36l0 0q0 36-36 36l-792 0q-36 0-36-36l0 0q0-36 36-36Z"></path>
  <path d="M56 584m36 0l360 0q36 0 36 36l0 0q0 36-36 36l-360 0q-36 0-36-36l0 0q0-36 36-36Z"></path>
  <path d="M56 832m36 0l272 0q36 0 36 36l0 0q0 36-36 36l-272 0q-36 0-36-36l0 0q0-36 36-36Z"></path>
  <path d="M943.92 684.576h-42.192c-3.976-8.576-9.616-26.4-16.84-39.104l29.808-28.96a23.544 23.544 0 0 0 0.016-33.616l-34.024-33.816c-9.392-9.392-24.624-9.288-34.032 0.112l-28.144 29.848c-12.68-7.208-30.512-12.8-39.088-16.784v-42.192c0-13.296-14.088-24.064-27.36-24.064h-48.112c-13.288 0-27.376 10.768-27.376 24.064v42.2c-8.576 3.976-26.4 9.616-39.096 16.824l-28.976-29.8a23.552 23.552 0 0 0-33.608-0.016l-33.816 34.024c-9.384 9.392-9.296 24.624 0.112 34.04l29.856 28.144c-7.216 12.704-12.8 30.52-16.784 39.096H512.08c-13.312 0-24.08 14.088-24.08 27.36v48.112c0 13.28 10.768 27.384 24.08 27.384h42.192c3.984 8.568 9.632 26.384 16.832 39.096l-29.808 28.976a23.536 23.536 0 0 0-0.016 33.6l34.024 33.824c9.384 9.384 24.624 9.288 34.032-0.12l28.144-29.856c12.696 7.208 30.52 12.8 39.096 16.784v42.2c0 13.296 14.088 24.064 27.36 24.064h48.12c13.28 0 27.376-10.768 27.376-24.08v-42.192c8.568-3.984 26.392-9.624 39.104-16.84l28.968 29.8a23.536 23.536 0 0 0 33.6 0.024l33.824-34.024a24.072 24.072 0 0 0-0.12-34.04l-29.856-28.136c7.208-12.704 12.8-30.512 16.784-39.088h42.192c13.304 0 24.072-14.088 24.072-27.36v-48.112c0-13.288-10.768-27.384-24.08-27.384zM732.44 842.664c-58.464 0-111.104-52.64-111.104-111.104 0-58.48 52.64-111.12 111.104-111.12 58.48 0 111.12 52.64 111.12 111.12 0 58.464-52.64 111.104-111.12 111.104z"></path>
</svg>

  );
}