react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 766 B
JSX
import React, { Component } from 'react';
export default class BatteryPositiveIcon 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-positive-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.667zm11.334 10.002h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2zM3 13h8V6H3v7z"/></svg>
)
}
}