react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 774 B
JSX
import React, { Component } from 'react';
export default class SaxophoneIcon 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-saxophone-icon ${this.props.className}`}><path d="M4 2a1 1 0 1 0 0 2 3 3 0 0 1 3 3v8.5c0 3.601 2.899 6.5 6.5 6.5s6.5-2.899 6.5-6.5V13c.554 0 1-.446 1-1s-.446-1-1-1h-6c-.554 0-1 .446-1 1s.446 1 1 1v2c0 .554-.446 1-1 1s-1-.446-1-1v-4a1 1 0 1 0 0-2V8a1 1 0 1 0 0-2v-.5A3.5 3.5 0 0 0 8.5 2H4z"/></svg>
)
}
}