
      import React, { Component } from 'react';

      export default class BatteryCharging20Icon 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-battery-charging20-icon ${this.props.className}`}><path d="M23.05 10.998h-3v-7l-5 10h3v8m-6-5h-8v-11h8m.667-2H11.05v-2h-6v2H3.383c-.736 0-1.333.597-1.333 1.333v15.334c0 .736.597 1.333 1.333 1.333h9.334c.736 0 1.333-.597 1.333-1.333V5.331c0-.736-.597-1.333-1.333-1.333z"/></svg>
          )
        }
      }