react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 752 B
JSX
import React, { Component } from 'react';
export default class BatteryCharging80Icon 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-charging80-icon ${this.props.className}`}><path d="M23 10.998h-3v-7l-5 10h3v8m-6-13H4v-3h8m.666-2H11v-2H5v2H3.332C2.596 3.998 2 4.595 2 5.331v15.334c0 .736.597 1.333 1.333 1.333h9.334c.736 0 1.333-.597 1.333-1.333V5.331c0-.736-.597-1.333-1.333-1.333z"/></svg>
)
}
}