import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M472 684a44 44 0 1 0 88 0 44 44 0 0 0-88 0zM489 576h54c4.952 0 9-3.6 9-8V296c0-4.4-4.048-8-9-8h-54c-4.952 0-9 3.6-9 8v272c0 4.4 4.048 8 9 8z"></path>
  <path d="M512 56C260 56 56 260 56 512s204 456 456 456 456-204 456-456S764 56 512 56z m0 840c-212 0-384-172-384-384s172-384 384-384 384 172 384 384-172 384-384 384z"></path>
</svg>

  );
}