import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M328 96m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"></path><path d="M328 384m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"></path><path d="M328 640m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"></path><path d="M328 928m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"></path><path d="M688 96m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"></path><path d="M688 384m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"></path><path d="M688 640m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"></path><path d="M688 928m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z"></path></svg>
  );
}