react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 867 B
JSX
import React, { Component } from 'react';
export default class XboxControllerBatteryMediumIcon 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-xbox-controller-battery-medium-icon ${this.props.className}`}><path d="M21 12V7h-6v5h6zm.667-7C22.403 5 23 5.597 23 6.333v13.334c0 .736-.597 1.333-1.333 1.333h-7.334A1.333 1.333 0 0 1 13 19.667V16.75H7.75C5.75 16.75 5 19 3 20c-2 0-3.5-3 .507-11.5h.243l.435-.833S7 6 8.325 7.227H13v-.894C13 5.597 13.597 5 14.333 5H16V3h4v2h1.667zM11 8a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>
)
}
}