react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 780 B
JSX
import React, { Component } from 'react';
export default class AmplifierIcon 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-amplifier-icon ${this.props.className}`}><path d="M10 2h4c.554 0 1 .446 1 1h6v18h-2a1 1 0 1 1-2 0H7a1 1 0 1 1-2 0H3V3h6c0-.554.446-1 1-1zM5 5v4h14V5H5zm2 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm5 0h2v1h-2V6zm3 0h1v2h-1V6zm2 0h1v2h-1V6zm-5 5a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm-2-5a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/></svg>
)
}
}