react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 763 B
JSX
import React, { Component } from 'react';
export default class XboxControllerIcon 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-icon ${this.props.className}`}><path d="M8.75 15.75C6.75 15.75 6 18 4 19c-2 0-3.5-3 .507-11.5h.243l.435-.833S8 5 9.325 6.227h5.35c1.325-1.227 4.14.44 4.14.44l.435.833h.243C23.5 16 22 19 20 19c-2-1-2.75-3.25-4.75-3.25h-6.5zM12 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>
)
}
}