UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 744 B
import React, { Component } from 'react'; export default class BatteryNegativeIcon 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-negative-icon ${this.props.className}`}><path d="M11.667 4C12.403 4 13 4.597 13 5.333v15.334c0 .736-.597 1.333-1.333 1.333H2.333A1.333 1.333 0 0 1 1 20.667V5.333C1 4.597 1.597 4 2.333 4H4V2.002L10 2v2h1.667zm3.334 8.002h8v2h-8v-2zM3 13h8V6H3v7z"/></svg> ) } }