UNPKG

material-ui

Version:

Material Design UI components built with React

22 lines (16 loc) 539 B
'use strict'; var React = require('react'); var PureRenderMixin = require('react-addons-pure-render-mixin'); var SvgIcon = require('../../svg-icon'); var CommunicationChatBubble = React.createClass({ displayName: 'CommunicationChatBubble', mixins: [PureRenderMixin], render: function render() { return React.createElement( SvgIcon, this.props, React.createElement('path', { d: 'M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z' }) ); } }); module.exports = CommunicationChatBubble;