
      import React, { Component } from 'react';

      export default class DiskAlertIcon 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-disk-alert-icon ${this.props.className}`}><path d="M10 13.998a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0-10a8 8 0 1 0 0 16 8 8 0 0 0 0-16zm10 8h2v-5h-2m0 9h2v-2h-2v2z"/></svg>
          )
        }
      }