import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M868 608V416h-712v192h712z m0 72h-712v162.864a25.24 25.24 0 0 0 25.136 25.136h661.728a25.2 25.2 0 0 0 25.136-25.136V680z m0-336V181.136a25.136 25.136 0 0 0-25.064-25.136H181.136a25.24 25.24 0 0 0-25.136 25.136V344h712z m-25.024-260h0.064c53.576 0.096 96.96 43.56 96.96 97.136v661.728c0 53.592-43.544 97.136-97.136 97.136H181.136c-53.552 0-97.136-43.56-97.136-97.136V181.136c0-53.576 43.584-97.136 97.136-97.136h661.84z"></path><path d="M244 288a36 36 0 1 1 0-72 36 36 0 0 1 0 72z m0 264a36 36 0 1 1 0-72 36 36 0 0 1 0 72z m0 256a36 36 0 1 1 0-72 36 36 0 0 1 0 72z"></path></svg>
  );
}