react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 722 B
JSX
import React, { Component } from 'react';
export default class SignalVariantIcon 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-signal-variant-icon ${this.props.className}`}><path d="M4 6V4h.1C12.9 4 20 11.1 20 19.9v.1h-2v-.1C18 12.2 11.8 6 4 6zm0 4V8c6.6 0 12 5.4 12 12h-2c0-5.5-4.5-10-10-10zm0 4v-2c4.4 0 8 3.6 8 8h-2c0-3.3-2.7-6-6-6zm0 2a4 4 0 0 1 4 4H4v-4z"/></svg>
)
}
}