UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 671 B
import React, { Component } from 'react'; export default class SecurityIcon 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-icon ${this.props.className}`}><path d="M12 11.988h7c-.53 4.12-3.277 7.791-7 8.936v-8.926H5v-5.7l7-3.11m0-2.19l-9 4v6c0 5.553 3.835 10.736 9 12 5.162-1.264 9-6.447 9-12v-6l-9-4z"/></svg> ) } }