import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M946.18 740.692l-333.106-573.31c-1.583-2.724-3.252-5.362-5.010-7.911-21.797-31.553-57.041-50.098-96.065-50.098-39.023 0-74.268 18.545-96.065 50.098-1.758 2.549-3.428 5.185-5.010 7.911l-333.106 573.31c-10.547 18.106-15.82 38.057-15.82 57.92v0.088c0 19.864 5.273 39.815 15.82 57.92 21.094 36.299 58.887 58.008 101.075 58.008h666.211c42.188 0 79.981-21.709 101.075-58.008 10.547-18.193 15.82-38.057 15.82-58.008 0-19.864-5.273-39.815-15.82-57.92zM892.215 825.682c-9.844 16.875-27.422 26.982-47.109 26.982h-666.211c-19.688 0-37.266-10.107-47.109-26.982s-9.844-37.090 0-54.053l333.106-573.31c9.844-16.875 27.422-26.982 47.109-26.982s37.266 10.107 47.109 26.982l333.105 573.31c9.844 16.963 9.844 37.089 0 54.053z"></path>
  <path d="M464.011 742.185c0 0 0 0 0 0 0 26.552 21.485 48.076 47.989 48.076 26.503 0 47.989-21.524 47.989-48.076 0 0 0 0 0 0 0 0 0 0 0 0 0-26.552-21.485-48.076-47.989-48.076-26.503 0-47.989 21.524-47.989 48.076s0 0 0 0z"></path>
  <path d="M512 659.481c22.852 0 41.484-18.545 41.484-41.308v-250.752c0-22.676-18.721-41.309-41.484-41.309-22.852 0-41.484 18.545-41.484 41.309v250.84c0 22.676 18.633 41.221 41.484 41.221z"></path>
</svg>

  );
}