
      import React, { Component } from 'react';

      export default class NukeIcon extends Component {
        static defaultProps = {
          className: ''
        };

        constructor(props) {
          super(props);
        }

        render() {
          return (
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-nuke-icon ${this.props.className}`}><path d="M14.041 12H10v-1H5.5a3.5 3.5 0 1 1 2.591-5.853 4.002 4.002 0 0 1 7.818 0A3.5 3.5 0 1 1 18.5 11h-4.459v1zM10 16.902V15.76H5.023v-2h14v2h-4.982v1.157l5.95 2.165A1.5 1.5 0 0 1 19.5 22h-15a1.5 1.5 0 0 1-.491-2.918L10 16.902z"/></svg>
          )
        }
      }