import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M975.12 747.648L619.824 126.816a131.416 131.416 0 0 0-5.344-8.56C591.216 84.08 553.624 64 512 64s-79.216 20.08-102.472 54.248a131.92 131.92 0 0 0-5.344 8.568L48.88 747.648a125.92 125.92 0 0 0-16.88 62.72v0.096c0 21.512 5.624 43.12 16.88 62.72C71.368 912.488 111.68 936 156.68 936h710.624c45 0 85.312-23.512 107.816-62.816 11.248-19.704 16.872-41.208 16.872-62.816 0-21.512-5.624-43.12-16.88-62.72h0.008z" fill="#F44336"></path><path d="M480 733.08a36 36 0 1 0 72 0 36 36 0 0 0-72 0c0 19.88 0 0 0 0z m36-81.608c19.832 0 36-18.432 36-41.072V361.072C552 338.528 535.76 320 516 320c-19.832 0-36 18.44-36 41.072v249.416c0 22.552 16.168 40.992 36 40.992v-0.008z" fill="#FFFFFF"></path></svg>
  );
}