react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 749 B
JSX
import React, { Component } from 'react';
export default class BatteryChargingIcon 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-charging-icon ${this.props.className}`}><path d="M16.669 3.999h-1.67V2.002H9V4H7.33c-.732 0-1.327.601-1.327 1.333V20.66c0 .742.595 1.344 1.327 1.344h9.329c.742 0 1.344-.602 1.344-1.334V5.332A1.34 1.34 0 0 0 16.669 4zM11 20v-5.498H9l3.998-7.5V12.5H15"/></svg>
)
}
}