import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 2360 1024"><defs></defs><path d="M0 995.555556h85.333333v28.444444H0zM142.222222 938.666667h85.333334v85.333333H142.222222zM284.444444 796.444444h85.333334v227.555556h-85.333334zM426.666667 739.555556h85.333333v284.444444h-85.333333zM568.888889 568.888889h85.333333v455.111111h-85.333333zM711.111111 341.333333h85.333333v682.666667h-85.333333zM853.333333 199.111111h85.333334v824.888889h-85.333334zM995.555556 56.888889h85.333333v967.111111h-85.333333zM1137.777778 0h85.333333v1024h-85.333333zM1280 56.888889h85.333333v967.111111h-85.333333zM1422.222222 199.111111h85.333334v824.888889h-85.333334zM1564.444444 341.333333h85.333334v682.666667h-85.333334zM1706.666667 568.888889h85.333333v455.111111h-85.333333zM1848.888889 739.555556h85.333333v284.444444h-85.333333zM1991.111111 796.444444h85.333333v227.555556h-85.333333zM2133.333333 938.666667h85.333334v85.333333h-85.333334zM2275.555556 995.555556h85.333333v28.444444h-85.333333z"></path></svg>
  );
}