import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M180 788.4V427.232c0-164.936 129.84-300.144 296-317.384V64a36 36 0 1 1 72 0v45.856c166.16 17.24 296 152.448 296 317.384v361.152h52a36 36 0 0 1 0 72H651.936C649.616 935.68 587.856 996 512 996c-75.848 0-137.608-60.32-139.936-135.6H128a36 36 0 0 1 0-72h52z m72 0h520V427.232C772 291.056 655.944 180 512 180c-143.944 0-260 111.056-260 247.24v361.152z m192.136 72a68 68 0 0 0 135.728 0H444.136z"></path></svg>
  );
}