react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 778 B
JSX
import React, { Component } from 'react';
export default class GuitarAcousticIcon 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-guitar-acoustic-icon ${this.props.className}`}><path d="M19.586 3H22v2h-1.586l-4.248 4.242a5 5 0 0 0-1.408-1.408L19.586 3zM12 8a4 4 0 0 1 1 7.871V16a5 5 0 1 1-5-5l.129.012A4 4 0 0 1 12 8zm0 2.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm-5.063 3.736l-.707.707 2.829 2.828.707-.707-2.829-2.828z"/></svg>
)
}
}