import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 192m-80 0a80 80 0 1 0 160 0 80 80 0 1 0-160 0Z"></path><path d="M512 512m-80 0a80 80 0 1 0 160 0 80 80 0 1 0-160 0Z"></path><path d="M512 832m-80 0a80 80 0 1 0 160 0 80 80 0 1 0-160 0Z"></path></svg>
  );
}