import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M312 480m34.04 0l331.92 0q34.04 0 34.04 34.04l0 3.92q0 34.04-34.04 34.04l-331.92 0q-34.04 0-34.04-34.04l0-3.92q0-34.04 34.04-34.04Z"></path></svg>
  );
}