react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 769 B
JSX
import React, { Component } from 'react';
export default class SecurityNetworkIcon 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-security-network-icon ${this.props.className}`}><path d="M13 18h1a1 1 0 0 1 1 1h7v2h-7a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1H2v-2h7a1 1 0 0 1 1-1h1v-1.66C8.074 15.134 6 12 6 8.667v-4L12 2l6 2.667v4c0 3.333-2.074 6.467-5 7.673V18zM12 4L8 5.694V9h4V4zm0 5v6c1.913-.468 4-2.943 4-5V9h-4z"/></svg>
)
}
}