import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 32C247.2 32 32 247.2 32 512s215.2 480 480 480 480-215.2 480-480S776.8 32 512 32z m0 897.6c-228.8 0-414.4-186.4-414.4-416.8S283.2 96 512 96s414.4 186.4 414.4 416.8-185.6 416.8-414.4 416.8z m0 0"></path><path d="M262.4 509.6c0 33.6 27.2 60.8 60.8 60.8 33.6 0 60.8-27.2 60.8-60.8 0-33.6-27.2-60.8-60.8-60.8-33.6 0-60.8 27.2-60.8 60.8z m202.4 0c0 33.6 27.2 60.8 60.8 60.8s60.8-27.2 60.8-60.8c0-33.6-27.2-60.8-60.8-60.8s-60.8 27.2-60.8 60.8z m182.4 0c0 33.6 27.2 60.8 60.8 60.8s60.8-27.2 60.8-60.8c0-33.6-27.2-60.8-60.8-60.8s-60.8 27.2-60.8 60.8z m0 0"></path></svg>
  );
}