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) 582 B
'use strict'; var React = require('react'); var mui = require('material-ui'); var SvgIcon = mui.SvgIcon; var createClass = require('create-react-class'); var CommunicationStayCurrentPortrait = createClass({ displayName: 'CommunicationStayCurrentPortrait', render: function render() { return React.createElement( SvgIcon, this.props, React.createElement('path', { d: 'M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z' }) ); } }); module.exports = CommunicationStayCurrentPortrait;