UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 535 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdBatteryCharging30 extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m26.1 6.7h-2.8v-3.4h-6.6v3.4h-2.8c-1.2 0-2.2 1-2.2 2.2v15.3h3.3l6.7-12.5v9.1h3.3l-1.8 3.4h5.1v-15.3c0-1.2-1-2.2-2.2-2.2z"/><path d="m18.3 33.3v-9.1h-6.6v10.3c0 1.2 1 2.2 2.2 2.2h12.2c1.2 0 2.2-1 2.2-2.2v-10.3h-5.1l-4.9 9.1z"/></g> </IconBase> ); } }