UNPKG

926 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _react = require('react');
8
9var _react2 = _interopRequireDefault(_react);
10
11var _pure = require('recompose/pure');
12
13var _pure2 = _interopRequireDefault(_pure);
14
15var _SvgIcon = require('../../SvgIcon');
16
17var _SvgIcon2 = _interopRequireDefault(_SvgIcon);
18
19function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20
21var CommunicationCallReceived = function CommunicationCallReceived(props) {
22 return _react2.default.createElement(
23 _SvgIcon2.default,
24 props,
25 _react2.default.createElement('path', { d: 'M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41z' })
26 );
27};
28CommunicationCallReceived = (0, _pure2.default)(CommunicationCallReceived);
29CommunicationCallReceived.displayName = 'CommunicationCallReceived';
30CommunicationCallReceived.muiName = 'SvgIcon';
31
32exports.default = CommunicationCallReceived;
\No newline at end of file