react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 742 B
JSX
import React, { Component } from 'react';
export default class Signal3gIcon 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-signal3g-icon ${this.props.className}`}><path d="M11 16.5v-2.25A2.25 2.25 0 0 0 8.75 12 2.25 2.25 0 0 0 11 9.75V7.5a3 3 0 0 0-3-3H2v3h6v3H5v3h3v3H2v3h6a3 3 0 0 0 3-3zm11 0v-6h-4.5v3H19v3h-3v-9h6v-3h-6a3 3 0 0 0-3 3v9c0 1.657 1.343 2.973 3 3h3a3 3 0 0 0 3-3z"/></svg>
)
}
}