import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M144 512m0-96a96 96 0 1 0 0 192 96 96 0 1 0 0-192Z"></path><path d="M512 512m0-96a96 96 0 1 0 0 192 96 96 0 1 0 0-192Z"></path><path d="M880 512m0-96a96 96 0 1 0 0 192 96 96 0 1 0 0-192Z"></path></svg>
  );
}