UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 745 B
import React, { Component } from 'react'; export default class BatteryPlusIcon 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-plus-icon ${this.props.className}`}><path d="M16.666 3.998c.737 0 1.333.597 1.333 1.333v15.334c0 .736-.596 1.333-1.333 1.333H7.332A1.333 1.333 0 0 1 6 20.665V5.331c0-.736.597-1.333 1.333-1.333H9L9 2l6-.002v2h1.666zM16 14v-2h-3V9h-2v3H8v2h3v3h2v-3h3z"/></svg> ) } }