UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 995 B
import React, { Component } from 'react'; export default class ServerSecurityIcon 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-server-security-icon ${this.props.className}`}><path d="M3 1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zm0 8h16a1 1 0 0 1 1 1v.667l-2.5-1.111-6.5 2.888V15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1zm0 8h8.003c.057 2.252.982 4.405 2.452 6H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1zM8 5h1V3H8v2zm0 8h1v-2H8v2zm0 8h1v-2H8v2zM4 3v2h2V3H4zm0 8v2h2v-2H4zm0 8v2h2v-2H4zm13.5-7l4.5 2v3c0 2.776-1.919 5.368-4.5 6-2.582-.632-4.5-3.224-4.5-6v-3l4.5-2zm0 1.944L15 15.055v2.667c0 1.543 1.066 2.982 2.5 3.333v-7.11z"/></svg> ) } }