react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 915 B
JSX
import React, { Component } from 'react';
export default class RouterWirelessIcon 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-router-wireless-icon ${this.props.className}`}><path d="M4 13h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1zm5 4h1v-2H9v2zm-4-2v2h2v-2H5zm14-8.066l-1.404 1.404A7.976 7.976 0 0 0 11.934 6 7.976 7.976 0 0 0 6.27 8.338L4.867 6.934A9.969 9.969 0 0 1 11.934 4 9.969 9.969 0 0 1 19 6.934zm-2.828 2.828l-1.406 1.406A3.986 3.986 0 0 0 11.934 10c-1.11 0-2.11.446-2.832 1.168L7.695 9.762a5.982 5.982 0 0 1 8.477 0z"/></svg>
)
}
}