32 lines
954 B
JavaScript
32 lines
954 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
Object.defineProperty(exports, "__esModule", {
|
||
|
|
value: true
|
||
|
|
});
|
||
|
|
|
||
|
|
var _react = require('react');
|
||
|
|
|
||
|
|
var _react2 = _interopRequireDefault(_react);
|
||
|
|
|
||
|
|
var _pure = require('recompose/pure');
|
||
|
|
|
||
|
|
var _pure2 = _interopRequireDefault(_pure);
|
||
|
|
|
||
|
|
var _SvgIcon = require('../../SvgIcon');
|
||
|
|
|
||
|
|
var _SvgIcon2 = _interopRequireDefault(_SvgIcon);
|
||
|
|
|
||
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
|
||
|
|
var ContentContentCopy = function ContentContentCopy(props) {
|
||
|
|
return _react2.default.createElement(
|
||
|
|
_SvgIcon2.default,
|
||
|
|
props,
|
||
|
|
_react2.default.createElement('path', { d: 'M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z' })
|
||
|
|
);
|
||
|
|
};
|
||
|
|
ContentContentCopy = (0, _pure2.default)(ContentContentCopy);
|
||
|
|
ContentContentCopy.displayName = 'ContentContentCopy';
|
||
|
|
ContentContentCopy.muiName = 'SvgIcon';
|
||
|
|
|
||
|
|
exports.default = ContentContentCopy;
|