UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 537 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdBatteryCharging20 extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m18.3 33.3v-5h-6.6v6.2c0 1.2 1 2.2 2.2 2.2h12.2c1.2 0 2.2-1 2.2-2.2v-6.2h-7.3l-2.7 5z"/><path d="m26.1 6.7h-2.8v-3.4h-6.6v3.4h-2.8c-1.2 0-2.2 1-2.2 2.2v19.4h6.6v-4.1h-3.3l6.7-12.5v9.1h3.3l-4 7.5h7.3v-19.4c0-1.2-1-2.2-2.2-2.2z"/></g> </IconBase> ); } }