You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 lines
1.9 KiB

  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.NetworkUploadIcon = undefined;
  6. var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  7. var _react = require('react');
  8. var _react2 = _interopRequireDefault(_react);
  9. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  10. function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
  11. var DEFAULT_SIZE = 24;
  12. var NetworkUploadIcon = function NetworkUploadIcon(_ref) {
  13. var _ref$fill = _ref.fill,
  14. fill = _ref$fill === undefined ? 'currentColor' : _ref$fill,
  15. _ref$width = _ref.width,
  16. width = _ref$width === undefined ? DEFAULT_SIZE : _ref$width,
  17. _ref$height = _ref.height,
  18. height = _ref$height === undefined ? DEFAULT_SIZE : _ref$height,
  19. _ref$style = _ref.style,
  20. style = _ref$style === undefined ? {} : _ref$style,
  21. props = _objectWithoutProperties(_ref, ['fill', 'width', 'height', 'style']);
  22. return _react2.default.createElement(
  23. 'svg',
  24. _extends({
  25. viewBox: '0 0 ' + DEFAULT_SIZE + ' ' + DEFAULT_SIZE,
  26. style: _extends({ fill: fill, width: width, height: height }, style)
  27. }, props),
  28. _react2.default.createElement('path', { d: 'M17,3C18.1,3 19,3.9 19,5V15C19,16.1 18.1,17 17,17H13V19H14C14.55,19 15,19.45 15,20H22V22H15C15,22.55 14.55,23 14,23H10C9.45,23 9,22.55 9,22H2V20H9C9,19.45 9.45,19 10,19H11V17H7C5.89,17 5,16.1 5,15V5C5,3.9 5.9,3 7,3H17M12,5.5L7.5,10H11V14H13V10H16.5L12,5.5Z' })
  29. );
  30. };
  31. exports.NetworkUploadIcon = NetworkUploadIcon;