UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 545 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdBatteryCharging50 extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m24.1 22.5l-5.8 10.8v-9.1h-3.3l0.9-1.7h-4.2v12c0 1.2 1 2.2 2.2 2.2h12.2c1.2 0 2.2-1 2.2-2.2v-12h-4.2z"/><path d="m26.1 6.7h-2.8v-3.4h-6.6v3.4h-2.8c-1.2 0-2.2 1-2.2 2.2v13.6h4.2l5.8-10.8v9.1h3.3l-0.9 1.7h4.2v-13.6c0-1.2-1-2.2-2.2-2.2z"/></g> </IconBase> ); } }