UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 724 B
import React, { Component } from 'react'; export default class BatteryMinusIcon 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-minus-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.666zM8 12v2h8v-2"/></svg> ) } }