react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 631 B
JSX
import React, { Component } from 'react';
export default class GamepadIcon 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-gamepad-icon ${this.props.className}`}><path d="M16.5 8.998l-3 3 3 3H22v-6m-13 7.5v5.5h6v-5.5l-3-3m-4.5-4.5H2v6h5.5l3-3m4.5-4.5v-5.5H9v5.5l3 3 3-3z"/></svg>
)
}
}