import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M213.336 64h597.328C893.144 64 960 130.856 960 213.336v597.328c0 82.48-66.856 149.336-149.336 149.336H213.336C130.856 960 64 893.144 64 810.664V213.336C64 130.856 130.856 64 213.336 64z"></path><path d="M512 290.464m-66.464 0a66.464 66.464 0 1 0 132.928 0 66.464 66.464 0 1 0-132.928 0Z"></path><path d="M674.464 349.536m-66.464 0a66.464 66.464 0 1 0 132.928 0 66.464 66.464 0 1 0-132.928 0Z" opacity=".4"></path><path d="M512 512m-110.768 0a110.768 110.768 0 1 0 221.536 0 110.768 110.768 0 1 0-221.536 0Z"></path><path d="M674.464 674.464m-66.464 0a66.464 66.464 0 1 0 132.928 0 66.464 66.464 0 1 0-132.928 0Z" opacity=".4"></path><path d="M349.536 342.152m-66.464 0a66.464 66.464 0 1 0 132.928 0 66.464 66.464 0 1 0-132.928 0Z" opacity=".4"></path><path d="M349.536 667.08m-66.464 0a66.464 66.464 0 1 0 132.928 0 66.464 66.464 0 1 0-132.928 0Z" opacity=".4"></path><path d="M512 733.536m-66.464 0a66.464 66.464 0 1 0 132.928 0 66.464 66.464 0 1 0-132.928 0Z"></path><path d="M290.464 504.616m-66.464 0a66.464 66.464 0 1 0 132.928 0 66.464 66.464 0 1 0-132.928 0Z"></path><path d="M733.536 512m-66.464 0a66.464 66.464 0 1 0 132.928 0 66.464 66.464 0 1 0-132.928 0Z"></path></svg>
  );
}