UNPKG

react-material-icons

Version:

Material design icons as [material-ui](https://github.com/callemall/material-ui) SvgIcon component. Icon components build with iconbuilder tool from material-ui.

22 lines (16 loc) 546 B
'use strict'; var React = require('react'); var mui = require('material-ui'); var SvgIcon = mui.SvgIcon; var createClass = require('create-react-class'); var NotificationSimCardAlert = createClass({ displayName: 'NotificationSimCardAlert', render: function render() { return React.createElement( SvgIcon, this.props, React.createElement('path', { d: 'M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z' }) ); } }); module.exports = NotificationSimCardAlert;