UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 1.2 kB
import React, { Component } from 'react'; export default class AccessPointNetworkIcon 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-access-point-network-icon ${this.props.className}`}><path d="M4.934 2.934A9.969 9.969 0 0 0 2 10a9.969 9.969 0 0 0 2.934 7.066l1.404-1.404A7.976 7.976 0 0 1 4 10c0-2.215.892-4.216 2.338-5.662L4.934 2.934zm14.132 0l-1.404 1.404A7.976 7.976 0 0 1 20 10a7.976 7.976 0 0 1-2.338 5.662l1.404 1.404A9.969 9.969 0 0 0 22 10a9.969 9.969 0 0 0-2.934-7.066zM7.762 5.762a5.982 5.982 0 0 0 0 8.476l1.406-1.406A3.986 3.986 0 0 1 8 10c0-1.11.446-2.11 1.168-2.832L7.762 5.762zm8.476 0l-1.406 1.406A3.986 3.986 0 0 1 16 10c0 1.11-.446 2.11-1.168 2.832l1.406 1.406a5.982 5.982 0 0 0 0-8.476zM12 8a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-1 6v4h-1a1 1 0 0 0-1 1H2v2h7a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1h7v-2h-7a1 1 0 0 0-1-1h-1v-4h-2z"/></svg> ) } }